This repository has been archived by the owner on Jan 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
72 lines (62 loc) · 2.71 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
<!--
FPLedit Build Process
Common build properties for all projects.
(c) Manuel Huber 2020
-->
<Project>
<!--
ADJUST THIS FOR NEW ETO RELEASES
-->
<PropertyGroup>
<EtoVersion Condition=" '$(EtoVersion)' == '' ">2.5.1-ci-20200323.6</EtoVersion>
</PropertyGroup>
<PropertyGroup>
<!-- Common props -->
<PathMap>$(MSBuildProjectDirectory)=eto-datastorebindablecomboboxcell-src\$(MSBuildProjectName)</PathMap>
<LangVersion>7.3</LangVersion>
<CodeAnalysisRuleSet>..\build_scripts\FPLedit.ruleset</CodeAnalysisRuleSet>
<!-- AssemblyInfo -->
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<Version>$(EtoVersion)</Version>
<Company>Manuel Huber</Company>
<Copyright>Copyright © 2019-2020 Manuel Huber</Copyright>
<Product>Eto.DsBindComboBoxCell</Product>
<!-- Output configuration -->
<OutputPath Condition=" '$(ForceConfigurationDir)' == '' ">..\bin\$(Configuration)\</OutputPath>
<OutputPath Condition=" '$(ForceConfigurationDir)' != '' ">..\bin\$(ForceConfigurationDir)\</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<!-- Use common obj folder -->
<IntermediateOutputPath>..\obj\$(SolutionName)\$(MSBuildProjectName)\$(Configuration)\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageVersion>$(EtoVersion)</PackageVersion>
<Authors>Manuel Huber</Authors>
<PackageProjectUrl>https://github.com/FPLedit/Eto.DsBindComboBoxCell/</PackageProjectUrl>
<Title>Eto.DsBindComboBoxCell</Title>
<PackageLicenseUrl>https://github.com/FPLedit/Eto.DsBindComboBoxCell/blob/master/LICENSE</PackageLicenseUrl>
</PropertyGroup>
<ItemGroup>
<!-- Include BuildFlags -->
<Compile Condition=" Exists('..\build_tmp\BuildFlags.cs') "
Include="..\build_tmp\BuildFlags.cs" Link="Properties\BuildFlags.cs" />
</ItemGroup>
<!-- Include Analyzers -->
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.VersionCheckAnalyzer" Version="2.9.8">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeQuality.Analyzers" Version="2.9.8">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.NetCore.Analyzers" Version="2.9.8">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.NetFramework.Analyzers" Version="2.9.8">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
</Project>