您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

10 行
457B

  1. <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2. <!--defining properties interesting for my task-->
  3. <PropertyGroup>
  4. <!--Reference to the assembly which contains the MSBuild Task-->
  5. <CustomTasksAssembly>$(MSBuildThisFileDirectory)..\lib\netstandard2.0\$(MSBuildThisFileName).dll</CustomTasksAssembly>
  6. </PropertyGroup>
  7. <UsingTask TaskName="$(MSBuildThisFileName).SimpleTask3" AssemblyFile="$(CustomTasksAssembly)" />
  8. </Project>