-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXPlaneDotNetCoreWebAPI.csproj
57 lines (50 loc) · 2.41 KB
/
XPlaneDotNetCoreWebAPI.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Compile Remove="XPlaneConnector\**" />
<Compile Remove="XPlaneDotNetCoreWebAPI\**" />
<Content Remove="XPlaneConnector\**" />
<Content Remove="XPlaneDotNetCoreWebAPI\**" />
<EmbeddedResource Remove="XPlaneConnector\**" />
<EmbeddedResource Remove="XPlaneDotNetCoreWebAPI\**" />
<None Remove="XPlaneConnector\**" />
<None Remove="XPlaneDotNetCoreWebAPI\**" />
<Compile Remove="ArrayToExcel\**" />
<EmbeddedResource Remove="ArrayToExcel\**" />
<None Remove="ArrayToExcel\**" />
<Content Remove="ArrayToExcel\**" />
<Compile Remove="QTGTest\**" />
<EmbeddedResource Remove="QTGTest\**" />
<None Remove="QTGTest\**" />
<Content Remove="QTGTest\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.Certificate" Version="6.0.10" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="XPlaneConnector\XPlaneConnector\XPlaneConnector.DataRefs\XPlaneConnector.DataRefs.csproj" />
<ProjectReference Include="XPlaneConnector\XPlaneConnector\XPlaneConnector\XPlaneConnector.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="myssl.pfx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<_ContentIncludedByDefault Remove="ArrayToExcel\ArrayToExcel\bin\Release\net6.0\ArrayToExcel.deps.json" />
<_ContentIncludedByDefault Remove="ArrayToExcel\ArrayToExcel\bin\Release\netstandard2.0\ArrayToExcel.deps.json" />
<_ContentIncludedByDefault Remove="ArrayToExcel\ArrayToExcel\obj\ArrayToExcel.csproj.nuget.dgspec.json" />
<_ContentIncludedByDefault Remove="ArrayToExcel\ArrayToExcel\obj\project.assets.json" />
<_ContentIncludedByDefault Remove="ArrayToExcel\ArrayToExcel\obj\project.packagespec.json" />
<_ContentIncludedByDefault Remove="QTGTest\App.config" />
<_ContentIncludedByDefault Remove="QTGTest\bin\Release\QTGTest.exe.config" />
<_ContentIncludedByDefault Remove="QTGTest\packages.config" />
<_ContentIncludedByDefault Remove="QTGTest\bin\Releasedata.json" />
<_ContentIncludedByDefault Remove="QTGTest\bin\Release\data.json" />
</ItemGroup>
</Project>