-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTeamTools.Common.Linting.csproj
More file actions
41 lines (36 loc) · 1.24 KB
/
Copy pathTeamTools.Common.Linting.csproj
File metadata and controls
41 lines (36 loc) · 1.24 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net6.0;net8.0;net10.0</TargetFrameworks>
<OutputType>Library</OutputType>
<Configurations>Debug;Release</Configurations>
</PropertyGroup>
<!-- Packing options -->
<PropertyGroup>
<IsPackable>true</IsPackable>
<PackageOutputPath>../.nupkg</PackageOutputPath>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>./readme.md</PackageReadmeFile>
<PackageTags>StaticCodeAnalysis;CodeQuality;TeamTools</PackageTags>
</PropertyGroup>
<!-- Dependencies -->
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
</ItemGroup>
<!-- Manual includes -->
<ItemGroup>
<Content Include="readme.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Strings.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Strings.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Strings.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Strings.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>