| 123456789101112131415161718192021222324252627 |
- <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>
|