-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSagara.Core.Caching.csproj
More file actions
58 lines (47 loc) · 2.11 KB
/
Copy pathSagara.Core.Caching.csproj
File metadata and controls
58 lines (47 loc) · 2.11 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- NuGet -->
<PackageId>Sagara.Core.Caching</PackageId>
<Description>Common caching functionality for redis.</Description>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<!--<PackageIcon>NuGet Package Icon.png</PackageIcon>-->
<PackageTags>redis caching</PackageTags>
<PackageReleaseNotes></PackageReleaseNotes>
<!-- SourceLink -->
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<!--<None Include="..\..\NuGet Package Icon.png" Pack="true" PackagePath="\" />-->
<None Include="..\..\LICENSE.md" Pack="true" PackagePath="" />
<None Include=".\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="StackExchange.Redis" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Sagara.Core\Sagara.Core.csproj" />
</ItemGroup>
<!-- When running in GitHub Actions, enable deterministic builds for the NuGet package. -->
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<InternalsVisibleTo Include="Sagara.Core.Caching.IntegrationTests" />
</ItemGroup>
</Project>