forked from microsoft/azure-health-data-services-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEventGridChannelSample.csproj
31 lines (26 loc) · 1.66 KB
/
EventGridChannelSample.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
27
28
29
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<UserSecretsId>acdfdf6f-5a61-40b4-989c-3a1add9e9b35</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" Version="1.0.0" />
<PackageReference Include="Microsoft.AzureHealth.DataServices.Storage" 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" />
<ProjectReference Include="..\..\..\src\Microsoft.AzureHealth.DataServices.Storage\Microsoft.AzureHealth.DataServices.Storage.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" Version="$(SdkVersion)" />
<PackageReference Include="Microsoft.AzureHealth.DataServices.Storage" Version="$(SdkVersion)" />
</ItemGroup>
</Project>