-
Notifications
You must be signed in to change notification settings - Fork 8
/
Directory.Build.props
33 lines (33 loc) · 1.51 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<Copyright>Drew Noakes 2015-2024</Copyright>
<Version>1.3.2</Version>
<Authors>Drew Noakes;Krzysztof Dul</Authors>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<DebugType>portable</DebugType>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<IncludeSource>true</IncludeSource>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/point-platform/cassette</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/point-platform/cassette.git</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>CassetteSquare.png</PackageIcon>
<PackageTags>ContentAddressableStorage;Storage;Database;CAS;FileSystem</PackageTags>
</PropertyGroup>
<ItemGroup>
<None Include="..\CassetteSquare.png" Pack="True" PackagePath="\" Visible="False" />
<None Include="..\README.md" Pack="True" PackagePath="\" Visible="False" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
<PackageReference Include="Nullable" Version="1.3.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>