-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathExpressBase.Scheduler.csproj
More file actions
30 lines (25 loc) · 1.01 KB
/
ExpressBase.Scheduler.csproj
File metadata and controls
30 lines (25 loc) · 1.01 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.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Quartz" Version="3.3.3" />
<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" />
<PackageReference Include="Quartz.Serialization.Json" Version="3.3.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ExpressBase.Common\ExpressBase.Common.csproj" />
<ProjectReference Include="..\ExpressBase.Objects\ExpressBase.Objects.csproj" />
</ItemGroup>
<PropertyGroup>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Deterministic>false</Deterministic>
</PropertyGroup>
<ItemGroup>
<Folder Include="Pages\" />
<Folder Include="Properties\" />
</ItemGroup>
</Project>