-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSerde.CmdLine.csproj
More file actions
32 lines (25 loc) · 999 Bytes
/
Serde.CmdLine.csproj
File metadata and controls
32 lines (25 loc) · 999 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>Serde.CmdLine</RootNamespace>
<Nullable>enable</Nullable>
<IsTrimmable>true</IsTrimmable>
<IsAotCompatible>true</IsAotCompatible>
<PackageVersion>0.1.3</PackageVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Serde" />
<PackageReference Include="Spectre.Console" />
<PackageReference Include="StaticCs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../Serde.CmdLine.Analyzers/Serde.CmdLine.Analyzers.csproj"
OutputItemType="CmdlineAnalyzers"
ReferenceOutputAssembly="false" />
</ItemGroup>
<Target Name="PackAnalyzer" BeforeTargets="_GetPackageFiles" DependsOnTargets="ResolveProjectReferences">
<ItemGroup>
<None Include="@(CmdlineAnalyzers)" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
</ItemGroup>
</Target>
</Project>