-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEasyJobInfraCode.csproj
37 lines (32 loc) · 1.17 KB
/
EasyJobInfraCode.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Version>0.0.0.4</Version>
<AssemblyVersion>0.0.0.4</AssemblyVersion>
<FileVersion>0.0.0.4</FileVersion>
<Company>EasyJob</Company>
<Authors>Akshin Mustafayev</Authors>
<Copyright>Akshin Mustafayev</Copyright>
<Product>EasyJob InfraCode</Product>
<Description>Perform administrative tasks using yaml playbooks</Description>
<ApplicationIcon>icon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Content Include="icon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CliWrap" Version="3.5.0" />
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="System.ServiceProcess.ServiceController" Version="6.0.0" />
<PackageReference Include="YamlDotNet" Version="12.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="examples.yaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="test.yaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>