forked from mellinoe/ShaderGen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
27 lines (24 loc) · 1.28 KB
/
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
23
24
25
26
27
<Project>
<PropertyGroup>
<Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
<RepositoryRootDirectory>$(MSBuildThisFileDirectory)</RepositoryRootDirectory>
<BinDir>$(RepositoryRootDirectory)bin</BinDir>
<OutputPath>$([System.IO.Path]::GetFullPath('$(RepositoryRootDirectory)bin\$(Configuration)'))\$(MSBuildProjectName)</OutputPath>
<BaseIntermediateOutputPath>$([System.IO.Path]::GetFullPath('$(RepositoryRootDirectory)bin\obj\$(MSBuildProjectName)'))\</BaseIntermediateOutputPath>
<PackageOutputPath>$(BinDir)\Packages\$(Configuration)</PackageOutputPath>
</PropertyGroup>
<PropertyGroup>
<!-- NuGet Package common properties. -->
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Copyright>Copyright 2019 (c) Eric Mellino. All rights reserved.</Copyright>
<Authors>Eric Mellino</Authors>
<ProjectUrl>https://github.com/mellinoe/ShaderGen</ProjectUrl>
<RepositoryUrl>https://github.com/mellinoe/ShaderGen</RepositoryUrl>
</PropertyGroup>
<PropertyGroup>
<NerdbankGitVersioningVersion>2.3.38</NerdbankGitVersioningVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" Version="$(NerdbankGitVersioningVersion)" PrivateAssets="all" />
</ItemGroup>
</Project>