-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
59 lines (49 loc) · 2.55 KB
/
Copy pathDirectory.Build.props
File metadata and controls
59 lines (49 loc) · 2.55 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<Project>
<!--
Shared properties and items that apply to any project opting in via
<IsWpfFrameworkLibrary>true</IsWpfFrameworkLibrary>. Vendored forks
(AvalonDock, upstream OxyPlot / OxyPlot.Wpf.Shared) and test / demo
projects do not opt in and are unaffected by this file.
-->
<PropertyGroup Condition="'$(IsWpfFrameworkLibrary)' == 'true'">
<Authors>C. Haden Smith, Woodrow L. Fields, Julian Gonzalez</Authors>
<Company>USACE-RMC</Company>
<Product>WPF Framework</Product>
<PackageProjectUrl>https://github.com/USACE-RMC/WPF-Framework</PackageProjectUrl>
<RepositoryUrl>https://github.com/USACE-RMC/WPF-Framework</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Version>1.0.4</Version>
<AssemblyVersion>1.0.4.0</AssemblyVersion>
<FileVersion>1.0.4.0</FileVersion>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<IsPackable>false</IsPackable>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<DebugType>embedded</DebugType>
<PackageLicenseExpression>0BSD</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<!-- Public API XML documentation must be complete on packable RMC libraries. -->
<WarningsAsErrors>$(WarningsAsErrors);CS1591;CS1572;CS1573;CS1574;CS0419</WarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(EnforceXmlDocumentation)' == 'true'">
<!--
Release validation enables the full XML documentation warning set. Run
scripts\validate-code-xml-docs.ps1 to combine this compiler gate with the
private class and method scanner.
-->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<WarningsAsErrors>$(WarningsAsErrors);CS0419;CS1570;CS1571;CS1572;CS1573;CS1574;CS1584;CS1587;CS1589;CS1591</WarningsAsErrors>
</PropertyGroup>
<ItemGroup Condition="'$(IsWpfFrameworkLibrary)' == 'true'">
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="\" Visible="false" />
<!-- Reproducible builds: https://github.com/dotnet/reproducible-builds -->
<PackageReference Include="DotNet.ReproducibleBuilds">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<!-- Source Link: https://github.com/dotnet/sourcelink -->
<PackageReference Include="Microsoft.SourceLink.GitHub">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
</Project>