-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheasey-job-scheduler.csproj
More file actions
44 lines (44 loc) · 2.64 KB
/
easey-job-scheduler.csproj
File metadata and controls
44 lines (44 loc) · 2.64 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
39
40
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>Epa.Camd.Quartz.Scheduler</RootNamespace>
<EnableUnsafeBinaryFormatterSerialization>true</EnableUnsafeBinaryFormatterSerialization>
<ValidateExecutableReferencesMatchSelfContained>false</ValidateExecutableReferencesMatchSelfContained>
<ErrorOnDuplicatePublishOutputFiles>false</ErrorOnDuplicatePublishOutputFiles>
</PropertyGroup>
<!-- TODO: Make this property group configurable by an environment variable. -->
<!-- Uncomment the following lines to disable debugging symbols in Release configuration. -->
<!--<PropertyGroup Condition="'$(Configuration)'=='Release'">
<DebugType>None</DebugType>
<DebugSymbols>False</DebugSymbols>
</PropertyGroup>-->
<ItemGroup>
<PackageReference Include="AWSSDK.Core" Version="3.5.2.8" />
<PackageReference Include="AWSSDK.S3" Version="3.5.8.3" />
<PackageReference Include="DotNetEnv" Version="2.3.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.3" />
<PackageReference Include="Serilog.AspNetCore" Version="6.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore.Swagger" Version="10.1.5" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="10.1.5" />
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="10.1.5" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.1.1" />
<PackageReference Include="Quartz" Version="3.5.0" />
<PackageReference Include="Quartz.AspNetCore" Version="3.5.0" />
<PackageReference Include="Quartz.Jobs" Version="3.5.0" />
<PackageReference Include="Quartz.Plugins" Version="3.5.0" />
<PackageReference Include="Quartz.Plugins.RecentHistory" Version="1.0.3" />
<PackageReference Include="Quartz.Plugins.TimeZoneConverter" Version="3.5.0" />
<PackageReference Include="Quartz.Serialization.Json" Version="3.5.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CheckEngine\CheckEngine\CheckEngine.csproj" />
<ProjectReference Include="..\CheckEngine\DatabaseAccess\DatabaseAccess.csproj" />
<ProjectReference Include="..\CheckEngine\MonitorPlan\MonitorPlan.csproj" />
<ProjectReference Include="..\CheckEngine\QA\QA.csproj" />
<ProjectReference Include="..\CheckEngine\Emissions\Emissions.csproj" />
<ProjectReference Include="..\CheckEngine\DM\DM.csproj" />
<ProjectReference Include="..\Quartz\SilkierQuartz\SilkierQuartz.csproj" />
<ProjectReference Include="..\Logger\Logger.csproj" />
</ItemGroup>
</Project>