-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexcelAzureBackend.csproj
More file actions
48 lines (40 loc) · 1.76 KB
/
Copy pathexcelAzureBackend.csproj
File metadata and controls
48 lines (40 loc) · 1.76 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<ApplicationInsightsResourceId>/resourcegroups/vmSize/providers/microsoft.insights/components/vmsize</ApplicationInsightsResourceId>
<ApplicationInsightsAnnotationResourceId>/resourcegroups/vmSize/providers/microsoft.insights/components/vmsize</ApplicationInsightsAnnotationResourceId>
<UserSecretsId>834abe5a-55ab-4a8d-b04c-f6d66e8ae768</UserSecretsId>
<ApplicationIcon />
<OutputType>Exe</OutputType>
<StartupObject />
</PropertyGroup>
<ItemGroup>
<Compile Remove="excelInstance\**" />
<Content Remove="excelInstance\**" />
<EmbeddedResource Remove="excelInstance\**" />
<None Remove="excelInstance\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.6.1" />
<PackageReference Include="Microsoft.AspNet.WebApi.Cors" Version="5.2.7" />
<PackageReference Include="Microsoft.Azure.DocumentDB.Core" Version="2.2.3" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.2.3" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
<PackageReference Include="System.Runtime.Serialization.Json" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.2.3" />
</ItemGroup>
<ItemGroup>
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="2.0.3" />
</ItemGroup>
<ItemGroup>
<WCFMetadata Include="Connected Services" />
</ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\files\" />
</ItemGroup>
<ItemGroup>
<None Include="wwwroot\index.html" />
</ItemGroup>
</Project>