-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathecoCode-csharp-test-project.csproj
More file actions
38 lines (31 loc) · 1.2 KB
/
ecoCode-csharp-test-project.csproj
File metadata and controls
38 lines (31 loc) · 1.2 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Authors>Green Code Initiative</Authors>
<Company>Green Code Initiative</Company>
<Description>A project that contains code with warnings that should be raised by the EcoCode analyzers.</Description>
<Copyright>Copyright EcoCode © 2024</Copyright>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<AnalysisMode>all</AnalysisMode>
<EnableNETAnalyzers>True</EnableNETAnalyzers>
<RunAnalyzersDuringBuild>True</RunAnalyzersDuringBuild>
<Version>1.0.0</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<AssemblyInformationalVersion>$(Version)</AssemblyInformationalVersion>
</PropertyGroup>
<ItemGroup>
<None Remove=".gitattributes" />
<None Remove=".gitignore" />
<None Remove="global.json" />
<None Remove="LICENCE.md" />
<None Remove="NuGet.Config" />
<None Remove="README.md" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="EcoCode" Version="1.1.0" PrivateAssets="all">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>