-
Notifications
You must be signed in to change notification settings - Fork 325
Expand file tree
/
Copy pathApplicationInsightsSample.csproj
More file actions
25 lines (21 loc) · 1.08 KB
/
ApplicationInsightsSample.csproj
File metadata and controls
25 lines (21 loc) · 1.08 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
<Project Sdk="Microsoft.NET.Sdk.Worker">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<UserSecretsId>d4d9b2e3-fb2a-4de6-9747-3d6d3b639d1a</UserSecretsId>
<ApplicationInsightsResourceId>dummy-value</ApplicationInsightsResourceId>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Diagnostics.DiagnosticSource" VersionOverride="7.0.2" />
<PackageReference Include="Vio.DurableTask.Hosting" />
<PackageReference Include="Microsoft.Extensions.Hosting" />
<PackageReference Include="Microsoft.ApplicationInsights.WorkerService" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\src\DurableTask.ApplicationInsights\DurableTask.ApplicationInsights.csproj" />
<ProjectReference Include="..\..\..\src\DurableTask.AzureStorage\DurableTask.AzureStorage.csproj" />
<ProjectReference Include="..\..\..\src\DurableTask.Core\DurableTask.Core.csproj" />
</ItemGroup>
</Project>