-
Notifications
You must be signed in to change notification settings - Fork 102
/
Directory.Build.props
42 lines (36 loc) · 1.49 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
34
35
36
37
38
39
40
41
42
<Project>
<PropertyGroup>
<Company>Jody Donetti</Company>
<Authors>Jody Donetti</Authors>
<Product>FusionCache</Product>
<Copyright>Copyright © Jody Donetti</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/ZiggyCreatures/FusionCache</RepositoryUrl>
<PackageProjectUrl>https://github.com/ZiggyCreatures/FusionCache</PackageProjectUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<DebugType>embedded</DebugType>
<!--
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
-->
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<PackageIcon>logo-128x128.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<!--<CheckEolTargetFramework>false</CheckEolTargetFramework>-->
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<!--<PropertyGroup>-->
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
</Project>