-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathStatelessWebGo.csproj
More file actions
38 lines (32 loc) · 1.41 KB
/
StatelessWebGo.csproj
File metadata and controls
38 lines (32 loc) · 1.41 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<IsServiceFabricServiceProject>True</IsServiceFabricServiceProject>
<RuntimeIdentifier>win7-x64</RuntimeIdentifier>
<TargetLatestRuntimePatch>False</TargetLatestRuntimePatch>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.1.2" PrivateAssets="All" />
<PackageReference Include="Microsoft.ServiceFabric.AspNetCore.Kestrel" Version="3.2.187" />
<PackageReference Include="Npgsql" Version="4.0.14" />
<PackageReference Include="Microsoft.Orleans.Clustering.AdoNet" Version="2.1.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Demo.IGrain\Demo.IGrain.csproj" />
<ProjectReference Include="..\Lib\Lib.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="Orleans.Clustering.AdoNet">
<HintPath>C:\Users\Eric\.nuget\packages\microsoft.orleans.clustering.adonet\2.0.0\lib\netstandard2.0\Orleans.Clustering.AdoNet.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Content Update="appsettings.Development.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>