You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MyCustomBuildTask.props 457B

2 maanden geleden
123456789
  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>