-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommon.proj
More file actions
54 lines (46 loc) · 1.93 KB
/
Common.proj
File metadata and controls
54 lines (46 loc) · 1.93 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
42
43
44
45
46
47
48
49
50
51
52
53
54
<Project>
<PropertyGroup>
<LangVersion>12</LangVersion>
<Nullable>enable</Nullable>
<WarningLevel>9999</WarningLevel>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<EnableNETAnalyzers>True</EnableNETAnalyzers>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<BaseOutputPath>..\bin</BaseOutputPath>
<IntermediateOutputPath>..\obj</IntermediateOutputPath>
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
<UseCommonOutputDirectory>true</UseCommonOutputDirectory>
<Authors>Microsoft</Authors>
<Company>Microsoft</Company>
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
<PackageIcon>images\LinuxTracepoints.png</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageOutputPath>$(BaseOutputPath)\$(Configuration)\packages</PackageOutputPath>
<PackageProjectUrl>https://github.com/microsoft/LinuxTracepoints-Net</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageTags>Tracepoints;Perf;Perf.data</PackageTags>
<RepositoryUrl>https://github.com/microsoft/LinuxTracepoints-Net</RepositoryUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<VersionPrefix>0.2.1</VersionPrefix>
<VersionSuffix>alpha</VersionSuffix>
</PropertyGroup>
<ItemGroup>
<None Include="../LinuxTracepoints.png">
<Pack>True</Pack>
<PackagePath>images/</PackagePath>
</None>
</ItemGroup>
<Choose>
<When Condition=" '$(CDP_DEFINITION_BUILD_COUNT)' == ''">
<PropertyGroup>
<Version>$(VersionPrefix)-$(VersionSuffix)</Version>
</PropertyGroup>
</When>
<When Condition=" '$(CDP_DEFINITION_BUILD_COUNT)' != ''">
<PropertyGroup>
<Version>$(VersionPrefix).$(CDP_DEFINITION_BUILD_COUNT)</Version>
</PropertyGroup>
</When>
</Choose>
</Project>