-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
27 lines (25 loc) · 1.14 KB
/
Directory.Build.props
File metadata and controls
27 lines (25 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="Packages.props" Condition="Exists('Packages.props')" />
<Import Project="Version.props" Condition="Exists('Version.props')" />
<PropertyGroup>
<Version>$(NBGV_NuGetPackageVersion)</Version>
<PackageVersion>$(NBGV_NuGetPackageVersion)</PackageVersion>
<AssemblyVersion>$(NBGV_AssemblyVersion)</AssemblyVersion>
<FileVersion>$(NBGV_AssemblyFileVersion)</FileVersion>
<InformationalVersion>$(NBGV_AssemblyInformationalVersion)</InformationalVersion>
<!-- package metadata -->
<Company>Digipen Institute of Technology</Company>
<Authors>Tony Rasa</Authors>
<Product>FakeHttpClient.NET</Product>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" Condition="!Exists('packages.config')">
<PrivateAssets>all</PrivateAssets>
<Version>3.7.115</Version>
</PackageReference>
</ItemGroup>
</Project>