35 lines
1.3 KiB
XML
35 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<RootNamespace></RootNamespace>
|
|
<IsPackable>False</IsPackable>
|
|
<NoWarn>CS0649;CS0169</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Nuke.Common" Version="0.12.1" />
|
|
<PackageReference Include="GitVersion.CommandLine.DotNetCore" Version="4.0.1-beta1-49" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<NukeMetadata Include="**\*.json" Exclude="bin\**;obj\**" />
|
|
<NukeExternalFiles Include="**\*.*.ext" Exclude="bin\**;obj\**" />
|
|
<None Remove="*.csproj.DotSettings;*.ref.*.txt" />
|
|
|
|
<!-- Common build related files -->
|
|
<None Include="..\build.ps1" />
|
|
<None Include="..\build.sh" />
|
|
<None Include="..\.nuke" />
|
|
<None Include="..\global.json" Condition="Exists('..\global.json')" />
|
|
<None Include="..\nuget.config" Condition="Exists('..\nuget.config')" />
|
|
<None Include="..\Jenkinsfile" Condition="Exists('..\Jenkinsfile')" />
|
|
<None Include="..\appveyor.yml" Condition="Exists('..\appveyor.yml')" />
|
|
<None Include="..\.travis.yml" Condition="Exists('..\.travis.yml')" />
|
|
<None Include="..\GitVersion.yml" Condition="Exists('..\GitVersion.yml')" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|