-
Notifications
You must be signed in to change notification settings - Fork 3
/
ExpressBase.MessageQueue.csproj
41 lines (33 loc) · 1.23 KB
/
ExpressBase.MessageQueue.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<None Remove="robots.txt" />
<!--<None Remove="Services\Workers\ImportExportService.cs~RF20134bdb.TMP" />-->
</ItemGroup>
<ItemGroup>
<Content Include="robots.txt">
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
</ItemGroup>
<PropertyGroup>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Deterministic>false</Deterministic>
</PropertyGroup>
<ItemGroup>
<Folder Include="Properties\" />
<Folder Include="wwwroot\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Flurl" Version="2.7.1" />
<PackageReference Include="Flurl.Http" Version="2.3.2" />
<PackageReference Include="FOSS.ServiceStack.ProtoBuf.Core" Version="5.0.2" />
<PackageReference Include="FOSS.ServiceStack.Server.Core" Version="5.0.2" />
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.1.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ExpressBase.Common\ExpressBase.Common.csproj" />
<ProjectReference Include="..\ExpressBase.Objects\ExpressBase.Objects.csproj" />
</ItemGroup>
</Project>