-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
84 lines (73 loc) · 3.56 KB
/
Directory.Build.props
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<Project>
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))"
Condition="Exists('$(MSBuildThisFileDirectory)..\Directory.Build.props')"/>
<PropertyGroup>
<FrameWorks>net7.0;netstandard2.0</FrameWorks>
<RunAnalyzersDuringBuild>true</RunAnalyzersDuringBuild>
<NoWarn>1701;1702;8032;8981</NoWarn>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<SignAssembly>false</SignAssembly>
<Description>CommandLinePlus - C# command line processor</Description>
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup>
<BaseOutputPath>..\Output\</BaseOutputPath>
<XmlDocsPath>$(SolutionDir)Docs\XmlFiles</XmlDocsPath>
</PropertyGroup>
<PropertyGroup>
<RepositoryUrl>https://github.com/k3ldar/.NetCorePluginManager</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>GCode Sender</PackageTags>
<PackageProjectUrl>http://pluginmanager.website/</PackageProjectUrl>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
<PackageReleaseNotes>Supports net7.0</PackageReleaseNotes>
<PackageTags>CommandLinePlus - Command line processor for c#</PackageTags>
</PropertyGroup>
<PropertyGroup>
<FrameWorkLatestVersion>net7.0</FrameWorkLatestVersion>
</PropertyGroup>
<PropertyGroup>
<AssemblyVersion>2.3.0</AssemblyVersion>
<Version>$(AssemblyVersion).0</Version>
<FileVersion>$(Version)</FileVersion>
<ProductVersion>$(Version)</ProductVersion>
<LangVersion>latest</LangVersion>
<Authors>Simon Carter (s1cart3r@gmail.com)</Authors>
<Company>Simon Carter</Company>
<Copyright>Copyright (c) 2022 - 2023 Simon Carter. All rights reserved.</Copyright>
<Description>CommandLinePlus - Command line processor for c#</Description>
</PropertyGroup>
<PropertyGroup>
<WarningLevel>9999</WarningLevel>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)'=='Debug|net7.0'">
<DefineConstants>CODE_ANALYSIS;DEBUG;TRACE;NET_CORE;NET_6_0;NET_6_X;ISO_WEEK;ATTR_OS;NET_5_ABOVE;NET_6_ABOVE;NET_7_ABOVE;NET_7_0;NET_7_X;WIN_SYSTEM</DefineConstants>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)'=='Release|net7.0'">
<DefineConstants>CODE_ANALYSIS;NET_CORE;NET_6_0;NET_6_X;ISO_WEEK;ATTR_OS;NET_5_ABOVE;NET_6_ABOVE;NET_7_ABOVE;NET_7_0;NET_7_X;WIN_SYSTEM</DefineConstants>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)'=='Debug|netstandard2.0'">
<DefineConstants>CODE_ANALYSIS;DEBUG;TRACE;NET_STANDARD</DefineConstants>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)'=='Release|netstandard2.0'">
<DefineConstants>CODE_ANALYSIS;NET_STANDARD</DefineConstants>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>CommandLinePlusTests</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
</Project>