選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

MsBuildExample1.csproj 699B

2ヶ月前
123456789101112131415161718
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="MyCustomBuildTask" Version="1.3.0" />
  10. </ItemGroup>
  11. <Import Project="..\packages\MyCustomBuildTask.1.3.0.0\build\MyCustomBuildTask.props" Condition="Exists('..\packages\MyCustomBuildTask.1.3.0.0\build\MyCustomBuildTask.props')" />
  12. <Target Name="MyTasks" AfterTargets="AfterBuild">
  13. <Message Importance="High" Text="+++ Justin Dearing +++" />
  14. <SimpleTask3 MyProperty="Appel depuis le nuget !" />
  15. </Target>
  16. </Project>