-
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
37 lines (30 loc) · 1.21 KB
/
Directory.Build.props
File metadata and controls
37 lines (30 loc) · 1.21 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
<Project>
<PropertyGroup>
<Company>Turner Software</Company>
<PackageId>$(AssemblyName)</PackageId>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
<PackageProjectUrl>https://github.com/TurnerSoftware/CacheTower</PackageProjectUrl>
<PackageBaseTags>caching;cache;multi-layer</PackageBaseTags>
<!-- SourceLink Support -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<DebugType>embedded</DebugType>
<LangVersion>Latest</LangVersion>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.201" PrivateAssets="All" />
<PackageReference Include="TurnerSoftware.BuildVersioning" Version="0.5.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\images\$(PackageIcon)" Pack="true" PackagePath="/" />
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.CLSCompliantAttribute">
<_Parameter1>true</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
</Project>