什么是.psproj文件?

时间:2018-02-20 08:49:53

标签: c# visual-studio visual-studio-2017

我克隆了一个回购邮件,其中有一个.psproj文件。我尝试在Visual Studio 2017中打开(因为notepad ++显示它包含xml,就像VS解决方案一样)。在VS中它也打开显示内部xml而不是proj / solution文件。与VS Code相同的结果。

所以我的问题是

  1. 什么是psproj文件?
  2. 由于它包含在PowerShell文件夹中,所以我的假设是正确的,它是一个PowerShell项目文件吗?
  3. 查看这些项目的IDE是什么?
  4. 文件内容:

    <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
      <PropertyGroup>
        <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
        <SchemaVersion>2.0</SchemaVersion>
        <ProjectGuid>6CAFC0C6-A428-4d30-A9F9-700E829FEA51</ProjectGuid>
        <OutputType>Exe</OutputType>
        <RootNamespace>MyApplication</RootNamespace>
        <AssemblyName>MyApplication</AssemblyName>
        <Name>Bootstrapper</Name>
      </PropertyGroup>
      <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
        <DebugSymbols>true</DebugSymbols>
        <DebugType>full</DebugType>
        <Optimize>false</Optimize>
        <OutputPath>bin\Debug\</OutputPath>
        <DefineConstants>DEBUG;TRACE</DefineConstants>
        <ErrorReport>prompt</ErrorReport>
        <WarningLevel>4</WarningLevel>
      </PropertyGroup>
      <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
        <DebugType>pdbonly</DebugType>
        <Optimize>true</Optimize>
        <OutputPath>bin\Release\</OutputPath>
        <DefineConstants>TRACE</DefineConstants>
        <ErrorReport>prompt</ErrorReport>
        <WarningLevel>4</WarningLevel>
      </PropertyGroup>
      <ItemGroup />
      <ItemGroup>
        <Compile Include="Script.ps1" />
      </ItemGroup>
      <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
      <Target Name="Build" />
    </Project>
    

2 个答案:

答案 0 :(得分:2)

好的,关于问题的评论,它是一个PowerShell项目文件。

要让您的VS了解此类文件,您需要为VS2015VS2017VS2013

安装相应的扩展程序

关于此的好文章是here

答案 1 :(得分:1)

这是一个Powershell项目文件,但不是用于Visual Studio,而是用于Powershell Studio。用于Visual Studio的Powershell项目是.pssproj。我花了很长时间才弄清楚这一点,因为这里的每个人都在忙于争论这是否是一个有效的问题,