| 12345678910111213141516171819202122232425262728293031323334353637 |
- <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.3" />
- <PackageReference Include="xunit.runner.console" Version="2.3.1" />
- <PackageReference Include="JetBrains.dotMemoryUnit" Version="3.0.20171219.105559" />
- </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')" />
- <Compile Remove="Numerge/**/*.*" />
- <Compile Include="Numerge/Numerge/**/*.cs" />
- </ItemGroup>
- </Project>
|