-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTest.csproj
More file actions
26 lines (21 loc) · 943 Bytes
/
Copy pathTest.csproj
File metadata and controls
26 lines (21 loc) · 943 Bytes
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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<DockerComposeProjectPath>..\docker-compose.dcproj</DockerComposeProjectPath>
</PropertyGroup>
<ItemGroup>
<Folder Include="wwwroot\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.4.10" />
<PackageReference Include="MongoDB.Driver" Version="2.8.1" />
<PackageReference Include="ServiceStack" Version="5.9.2" />
<PackageReference Include="ServiceStack.Redis" Version="5.5.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Test.ServiceInterface\Test.ServiceInterface.csproj" />
<ProjectReference Include="..\Test.ServiceModel\Test.ServiceModel.csproj" />
</ItemGroup>
</Project>