-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetEvolve.Defaults.csproj
More file actions
23 lines (23 loc) · 1.12 KB
/
NetEvolve.Defaults.csproj
File metadata and controls
23 lines (23 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="build\NetEvolve.Defaults.props" />
<PropertyGroup>
<TargetFramework>$(NetEvolve_ProjectTargetFrameworks)</TargetFramework>
<IncludeBuildOutput>false</IncludeBuildOutput>
<IsPackable>true</IsPackable>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<IncludeSymbols>false</IncludeSymbols>
<NoWarn>$(NoWarn);NU5128;</NoWarn>
<DevelopmentDependency>true</DevelopmentDependency>
</PropertyGroup>
<ItemGroup>
<None Include="build\**" Pack="true" PackagePath="build\" />
<None Include="buildMultiTargeting\**" Pack="true" PackagePath="buildMultiTargeting\" />
<None Include="buildTransitive\**" Pack="true" PackagePath="buildTransitive\" />
<None Include="configurations\**" Pack="true" PackagePath="configurations\" />
<None Include="_._" Pack="true" PackagePath="lib\$(TargetFramework)" Visible="false" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NetEvolve.Defaults.Analyzer\NetEvolve.Defaults.Analyzer.csproj" PrivateAssets="None" />
</ItemGroup>
<Import Project="build\NetEvolve.Defaults.targets" />
</Project>