forked from DiscUtils/DiscUtils
-
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
32 lines (22 loc) · 1010 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
32 lines (22 loc) · 1010 Bytes
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
28
29
30
31
32
<Project>
<PropertyGroup>
<LangVersion>Preview</LangVersion>
<DebugType>portable</DebugType>
<PackageProjectUrl>https://github.com/LTRData/DiscUtils</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<Company>LTR Data</Company>
<Authors>Kenneth Bell;LordMike;Olof Lagerkvist</Authors>
<OutputPath>..\$(Configuration)</OutputPath>
<FileVersion>1.0.89</FileVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>CS1591;CS0649</NoWarn>
</PropertyGroup>
<!-- Add PolySharp for supporting more recent language features -->
<ItemGroup Condition="!$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net5.0'))">
<PackageReference Include="PolySharp" Version="*">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>