Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net8.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- </PropertyGroup>
-
- <ItemGroup>
- <PackageReference Include="MyCustomBuildTask" Version="1.3.0" />
- </ItemGroup>
- <Import Project="..\packages\MyCustomBuildTask.1.3.0.0\build\MyCustomBuildTask.props" Condition="Exists('..\packages\MyCustomBuildTask.1.3.0.0\build\MyCustomBuildTask.props')" />
- <Target Name="MyTasks" AfterTargets="AfterBuild">
- <Message Importance="High" Text="+++ Justin Dearing +++" />
- <SimpleTask3 MyProperty="Appel depuis le nuget !" />
- </Target>
- </Project>
|