Files
coverlet/Directory.Build.props
T
Andrew Arnott f4c2d305a3 Build to bin\<config>\Packages instead of build\
The "bin" folder name is more common for .NET based projects such as this one. And it allows the .gitignore file to ignore the "bin" folder while allowing the "build" folder to appear under project directories with a build folder in source code that contains package payload.
2019-05-28 23:42:35 -06:00

13 lines
456 B
XML

<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<RepoRoot>$(MSBuildThisFileDirectory)</RepoRoot>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<PackageOutputPath>$(MSBuildThisFileDirectory)bin\$(Configuration)\Packages\</PackageOutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" Version="2.3.38" PrivateAssets="all" />
</ItemGroup>
</Project>