Directory.Build.props 1.3 KB

123456789101112131415161718192021222324252627
  1. <Project>
  2. <PropertyGroup>
  3. <Configuration Condition="'$(Configuration)' == ''">Debug</Configuration>
  4. <RepositoryRootDirectory>$(MSBuildThisFileDirectory)</RepositoryRootDirectory>
  5. <BinDir>$(RepositoryRootDirectory)bin</BinDir>
  6. <OutputPath>$([System.IO.Path]::GetFullPath('$(RepositoryRootDirectory)bin\$(Configuration)'))\$(MSBuildProjectName)</OutputPath>
  7. <BaseIntermediateOutputPath>$([System.IO.Path]::GetFullPath('$(RepositoryRootDirectory)bin\obj\$(MSBuildProjectName)'))\</BaseIntermediateOutputPath>
  8. <PackageOutputPath>$(BinDir)\Packages\$(Configuration)</PackageOutputPath>
  9. </PropertyGroup>
  10. <PropertyGroup>
  11. <!-- NuGet Package common properties. -->
  12. <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
  13. <Copyright>Copyright 2019 (c) Eric Mellino. All rights reserved.</Copyright>
  14. <Authors>Eric Mellino</Authors>
  15. <ProjectUrl>https://github.com/mellinoe/ShaderGen</ProjectUrl>
  16. <RepositoryUrl>https://github.com/mellinoe/ShaderGen</RepositoryUrl>
  17. </PropertyGroup>
  18. <PropertyGroup>
  19. <NerdbankGitVersioningVersion>2.3.38</NerdbankGitVersioningVersion>
  20. </PropertyGroup>
  21. <ItemGroup>
  22. <PackageReference Include="Nerdbank.GitVersioning" Version="$(NerdbankGitVersioningVersion)" PrivateAssets="all" />
  23. </ItemGroup>
  24. </Project>