-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathInEngine.csproj
More file actions
58 lines (56 loc) · 2.25 KB
/
InEngine.csproj
File metadata and controls
58 lines (56 loc) · 2.25 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
45
46
47
48
49
50
51
52
53
54
55
56
57
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<PackageVersion>5.0.0</PackageVersion>
</PropertyGroup>
<PropertyGroup>
<Version>5.0.0</Version>
<FileVersion>5.0.0</FileVersion>
<Authors>Ethan Hann</Authors>
<Description>Plugin-based queuing and scheduling command server.</Description>
<Copyright>Copyright © 2022 Ethan Hann</Copyright>
<Product>InEngine.NET</Product>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageLicenseUrl>https://github.com/InEngine-NET/InEngine.NET/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/InEngine-NET/InEngine.NET</PackageProjectUrl>
<PackageIconUrl>https://inengine-net.github.io/InEngine.NET/images/inengine-logo-32.png</PackageIconUrl>
<PackageTags>Integration Scheduler Queue Server Quartz.NET Redis</PackageTags>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\InEngine.Core\InEngine.Core.csproj" />
<ProjectReference Include="..\InEngine.Commands\InEngine.Commands.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Common.Logging.Serilog" Version="4.4.0" />
<PackageReference Include="NETStandard.Library" Version="2.0.1" />
<PackageReference Include="CommandLineParser" Version="1.9.71" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Plugins\README.md">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Dockerfile">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="app.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Compile Update="resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>text.resx</DependentUpon>
</Compile>
</ItemGroup>
</Project>