forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceStack.Core.SelfHost.csproj
More file actions
30 lines (24 loc) · 1.29 KB
/
Copy pathServiceStack.Core.SelfHost.csproj
File metadata and controls
30 lines (24 loc) · 1.29 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<AssemblyName>ServiceStack.Core.SelfHost</AssemblyName>
<PackageId>ServiceStack.Core.SelfHost</PackageId>
</PropertyGroup>
<ItemGroup>
<Folder Include="wwwroot\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.0" />
<PackageReference Include="AWSSDK.S3" Version="3.3.*" />
<PackageReference Include="AWSSDK.Core" Version="3.3.*" />
<Reference Include="..\..\lib\netstandard1.1\ServiceStack.Interfaces.dll" />
<Reference Include="..\..\lib\netstandard1.3\ServiceStack.Text.dll" />
<!-- <Reference Include="..\..\lib\netstandard1.6\ServiceStack.Aws.dll" /> -->
<ProjectReference Include="..\..\..\ServiceStack.Aws\src\ServiceStack.Aws\ServiceStack.Aws.csproj" />
<ProjectReference Include="..\ServiceStack.Client\ServiceStack.Client.csproj" />
<ProjectReference Include="..\ServiceStack.Common\ServiceStack.Common.csproj" />
<ProjectReference Include="..\ServiceStack\ServiceStack.csproj" />
<ProjectReference Include="..\ServiceStack.Server\ServiceStack.Server.csproj" />
<ProjectReference Include="..\ServiceStack.Api.Swagger\ServiceStack.Api.Swagger.csproj" />
</ItemGroup>
</Project>