-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAtc.CodingRules.Updater.CLI.csproj
34 lines (29 loc) · 1.25 KB
/
Atc.CodingRules.Updater.CLI.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<PackageId>atc-coding-rules-updater</PackageId>
<PackageTags>coding-rules;rules</PackageTags>
<Description>A .NET Tool that can update a project with the latest atc-coding-rules.</Description>
<Title>ATC CodingRules Updater CLI</Title>
<OutputType>Exe</OutputType>
<AssemblyName>atc-coding-rules-updater</AssemblyName>
<PackAsTool>true</PackAsTool>
<DebugType>pdbonly</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Atc" Version="2.0.442" />
<PackageReference Include="Atc.DotNet" Version="2.0.442" />
<PackageReference Include="Atc.Console.Spectre" Version="2.0.442" />
<PackageReference Include="EPPlus" Version="7.1.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Atc.CodingRules.AnalyzerProviders\Atc.CodingRules.AnalyzerProviders.csproj" />
<ProjectReference Include="..\Atc.CodingRules.Updater\Atc.CodingRules.Updater.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>