Directory.Build.props 975 B

1234567891011121314151617
  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. </PropertyGroup>
  9. <PropertyGroup>
  10. <!-- NuGet Package common properties. -->
  11. <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
  12. <Copyright>Copyright 2017 (c) Eric Mellino. All rights reserved.</Copyright>
  13. <Authors>Eric Mellino</Authors>
  14. <ProjectUrl>https://github.com/mellinoe/ShaderGen</ProjectUrl>
  15. <RepositoryUrl>https://github.com/mellinoe/ShaderGen</RepositoryUrl>
  16. </PropertyGroup>
  17. </Project>