我在Visual Studio 2015中安装了Powershell Tools项目,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<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>PS.TEST</Name>
<DebugArguments>
</DebugArguments>
<Author />
<CompanyName />
<Copyright />
<Description />
<Version>1.0.0.1</Version>
<Guid>29a8500a-c449-43f5-b9ba-610546db8cc2</Guid>
<FormatsToProcess />
<FunctionsToProcess />
<ModuleList>
</ModuleList>
<ModuleToProcess />
<NestedModules />
<TypesToProcess />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Compile Include="PS-TEST.psd1" />
<Compile Include="PS-TEST.psm1" />
<Compile Include="Tools\Release.ps1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Files\" />
<Folder Include="Tools\" />
<Folder Include="Public\" />
<Folder Include="Private\" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Target Name="CoreCompile" />
<Target Name="Build">
<Exec Command="Powershell.exe Tools\Release.ps1 $(version)" />
</Target>
</Project>
当我构建完整的解决方案&#34; Build&#34;任务执行命令未执行。为什么呢?
当我使用 msbuild 控制台应用程序构建它时,它会成功并执行&#34;构建&#34;任务执行命令,然而&#34;构建命令&#34;在Visual Studio 2015中,当我右键单击解决方案资源管理器上的项目节点时,不会为此项目显示社区。如何启用?
我已经添加了节点<Target Name="CoreCompile" />
但没有效果 - 该命令仍未在UI中显示。 XML中是否还缺少某些内容?
答案 0 :(得分:1)
PowerShell Tools扩展程序未定义用于“构建”PowerShell模块项目的Visual Studio命令。如果右键单击解决方案资源管理器中的项目,您将注意到没有构建选项。
但是,“构建”菜单下方有一个选项。我假设这只是Visual Studio的标准chrome,而不是扩展提供程序的做法。因为点击这个本质上是一个无操作。
目前,msbuild是完成您所需的工具。