forked from G-Research/Bulldog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
22 lines (22 loc) · 966 Bytes
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project>
<PropertyGroup>
<Deterministic>true</Deterministic>
<Features>pdb-path-determinism</Features>
<PathMap>$(MSBuildThisFileDirectory)=E:\code\Bulldog</PathMap>
<PackageOutputPath>$(MSBuildThisFileDirectory)artefacts</PackageOutputPath>
<ApplicationIcon>$(MSBuildThisFileDirectory)Bulldog.ico</ApplicationIcon>
<NoWarn>NETSDK1138</NoWarn>
<PackageIcon>Bulldog.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)Bulldog.png" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<!-- Use GitVersioning for nuget packages -->
<PackageReference Include="Nerdbank.GitVersioning" Version="3.5.119" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>