-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathMemoryCacheAndRedisProviderSample.csproj
26 lines (21 loc) · 1.25 KB
/
MemoryCacheAndRedisProviderSample.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<UserSecretsId>72d506a0-2925-4986-b233-9f305433d4de</UserSecretsId>
</PropertyGroup>
<!-- Default to version 1.0.0 if SdkVersion is not set -->
<ItemGroup Condition="'$(SdkVersion)' == ''" >
<PackageReference Include="Microsoft.AzureHealth.DataServices.Core" Version="1.0.0" />
<PackageReference Include="Microsoft.AzureHealth.DataServices.Caching" Version="1.0.0" />
</ItemGroup>
<!-- Default to referencing the project in this repo if local -->
<ItemGroup Condition="'$(SdkVersion)' == 'local'">
<ProjectReference Include="..\..\..\src\Microsoft.AzureHealth.DataServices.Core\Microsoft.AzureHealth.DataServices.Core.csproj" />
<ProjectReference Include="..\..\..\src\Microsoft.AzureHealth.DataServices.Caching\Microsoft.AzureHealth.DataServices.Caching.csproj" />
</ItemGroup>
<!-- If neither of the above, read version from SdkVersion -->
<ItemGroup Condition="'$(SdkVersion)' != '' And '$(SdkVersion)' != 'local'" >
<PackageReference Include="Microsoft.AzureHealth.DataServices.Core" Version="$(SdkVersion)" />
<PackageReference Include="Microsoft.AzureHealth.DataServices.Caching" Version="$(SdkVersion)" />
</ItemGroup>
</Project>