_build.csproj
1 <Project Sdk="Microsoft.NET.Sdk"> 2 3 <PropertyGroup> 4 <OutputType>Exe</OutputType> 5 <TargetFramework>netcoreapp2.0</TargetFramework> 6 <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> 7 <RootNamespace></RootNamespace> 8 <IsPackable>False</IsPackable> 9 <NoWarn>CS0649;CS0169</NoWarn> 10 </PropertyGroup> 11 12 <ItemGroup> 13 <PackageReference Include="Nuke.Common" Version="0.21.2" /> 14 <PackageReference Include="GitVersion.CommandLine.DotNetCore" Version="5.0.0"> 15 <PrivateAssets>all</PrivateAssets> 16 <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> 17 </PackageReference> 18 </ItemGroup> 19 20 <ItemGroup> 21 <NukeSpecificationFiles Include="**\*.json" Exclude="bin\**;obj\**" /> 22 <NukeExternalFiles Include="**\*.*.ext" Exclude="bin\**;obj\**" /> 23 <None Remove="*.csproj.DotSettings;*.ref.*.txt" /> 24 25 <!-- Common build related files --> 26 <None Include="..\build.ps1" /> 27 <None Include="..\build.sh" /> 28 <None Include="..\.nuke" /> 29 <None Include="..\global.json" Condition="Exists('..\global.json')" /> 30 <None Include="..\nuget.config" Condition="Exists('..\nuget.config')" /> 31 <None Include="..\azure-pipelines.yml" Condition="Exists('..\azure-pipelines.yml')" /> 32 <None Include="..\Jenkinsfile" Condition="Exists('..\Jenkinsfile')" /> 33 <None Include="..\appveyor.yml" Condition="Exists('..\appveyor.yml')" /> 34 <None Include="..\.travis.yml" Condition="Exists('..\.travis.yml')" /> 35 <None Include="..\GitVersion.yml" Condition="Exists('..\GitVersion.yml')" /> 36 </ItemGroup> 37 38 </Project>