Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. <Project>
  2. <!-- General Metadata -->
  3. <PropertyGroup>
  4. <Title>RandomLib</Title>
  5. <Description>A utility library to do utility tasks</Description>
  6. <Authors>Meik Tranel</Authors>
  7. <VersionPrefix>0.1</VersionPrefix>
  8. <PackageLicenseExpression>MIT</PackageLicenseExpression>
  9. </PropertyGroup>
  10.  
  11. <!-- CSProj/Build related settings -->
  12. <PropertyGroup>
  13. <RestoreProjectStyle>PackageReference</RestoreProjectStyle>
  14. <DebugType>embedded</DebugType>
  15. </PropertyGroup>
  16.  
  17. <!-- Miscellaneous tweaks -->
  18. <PropertyGroup>
  19. <!-- Avoid annoying behavior in regards to `dotnet test`ing a solution file -->
  20. <IsTestProject>false</IsTestProject>
  21. </PropertyGroup>
  22.  
  23. <!-- Customization -->
  24. <PropertyGroup>
  25. <!--
  26. Establish the following kinds of builds:
  27. - dev
  28. - prerelease
  29. - release
  30. These types shall be used tweak the build further
  31. based on the type of build we are initiating.
  32. -->
  33. <BuildType>dev</BuildType>
  34. </PropertyGroup>
  35. </Project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement