-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathBlobChannelSample.csproj
More file actions
31 lines (26 loc) · 1.44 KB
/
BlobChannelSample.csproj
File metadata and controls
31 lines (26 loc) · 1.44 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<UserSecretsId>a04fe0f3-3e08-4734-9607-33b1b4776ea0</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.Channels.Extensions" 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.Channels\Microsoft.AzureHealth.DataServices.Channels.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.Channels.Extensions" Version="$(SdkVersion)" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Core" Version="1.47.1" />
</ItemGroup>
</Project>