-
Notifications
You must be signed in to change notification settings - Fork 393
Expand file tree
/
Copy pathsrc.props
More file actions
40 lines (36 loc) · 2.09 KB
/
src.props
File metadata and controls
40 lines (36 loc) · 2.09 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
<Project>
<PropertyGroup>
<BUILD_NUMBER Condition="'$(BUILD_NUMBER)' == ''">0</BUILD_NUMBER>
<CompilerGeneratedFilesOutputPath>Generated</CompilerGeneratedFilesOutputPath><!-- TODO: move to Directory.Build.props -->
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles><!-- TODO: move to Directory.Build.props -->
<IsPackable>true</IsPackable>
<MinVerBuildMetadata>build.$(BUILD_NUMBER)</MinVerBuildMetadata>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile><!-- TODO: verify license is included in packages -->
<PackageProjectUrl>https://github.com/duendesoftware/products</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReadmePath>../../README.md</PackageReadmePath>
<PackageReleaseNotes>https://github.com/duendesoftware/products/releases</PackageReleaseNotes>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
</PropertyGroup>
<!-- TODO: check which of these properties are actually required -->
<PropertyGroup Label="SourceLink">
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
</PropertyGroup>
<PropertyGroup>
<NoWarn>$(NoWarn);RS0016</NoWarn><!-- Add public types and members to the declared API -->
<NoWarn>$(NoWarn);RS0037</NoWarn><!-- Enable tracking of nullability of reference types in the declared API -->
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" PrivateAssets="All" />
<PackageReference Include="MinVer" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<None Include="../../../icon.png" Pack="true" Visible="false" PackagePath="" />
<None Include="../../../LICENSE" Pack="true" PackagePath="" />
<None Include="$(PackageReadmePath)" Pack="true" PackagePath="" />
</ItemGroup>
</Project>