-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
83 lines (70 loc) · 3.69 KB
/
Copy pathDirectory.Build.props
File metadata and controls
83 lines (70 loc) · 3.69 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
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
<Project>
<PropertyGroup Condition="'$(OfficialBuildNumber)'==''">
<OfficialBuildNumber>0</OfficialBuildNumber>
</PropertyGroup>
<PropertyGroup>
<LangVersion>preview</LangVersion>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<Product>The SimpleProcessFramework</Product>
<MinorVersion>832</MinorVersion>
<Version>0.$(MinorVersion).$(OfficialBuildNumber)</Version>
<SpfxNugetVersion>$(Version)-alpha</SpfxNugetVersion>
<ProductVersion>$(Version)</ProductVersion>
<PackageVersion>$(Version)</PackageVersion>
<ProductName>The SimpleProcessFramework</ProductName>
<Description>Spfx ($(TargetFramework))</Description>
<Title>Spfx ($(TargetFramework))</Title>
<Company>The SimpleProcessFramework</Company>
<AssemblyTitle>$(Title)</AssemblyTitle>
<InformationalVersion>$(SpfxNugetVersion) ($(TargetFramework))</InformationalVersion>
<Configurations>Debug;Release;Netcore_Debug;Netcore_Release;Debug_NoTests;Release_NoTests</Configurations>
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)/SimpleProcessFramework/Properties/spfx.snk</AssemblyOriginatorKeyFile>
<AddSyntheticProjectReferencesForSolutionDependencies>false</AddSyntheticProjectReferencesForSolutionDependencies>
<DefineConstants>$(DefineConstants);NETCORE31_SUPPORTED</DefineConstants>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<DefaultNetcoreVersion>net6.0</DefaultNetcoreVersion>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.StartsWith('Netcore_'))">
<DefineConstants>$(DefineConstants);UNIX_TESTS_BUILD_ONLY</DefineConstants>
<SpfxBuildNet48>false</SpfxBuildNet48>
</PropertyGroup>
<PropertyGroup Condition="'$(OS)'=='Windows_NT' AND '$(SpfxBuildNet48)'==''">
<SpfxBuildNet48>true</SpfxBuildNet48>
</PropertyGroup>
<PropertyGroup Condition="'$(OS)'=='Windows_NT'">
<DefineConstants>$(DefineConstants);WINDOWS_BUILD</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(NetCore3Versions)'==''">
<NetCore3Versions>netcoreapp3.1</NetCore3Versions>
</PropertyGroup>
<PropertyGroup Condition="'$(NetCore3PlusVersions)'==''">
<NetCore3PlusVersions>$(NetCore3Versions);net6.0</NetCore3PlusVersions>
</PropertyGroup>
<PropertyGroup Condition="'$(AllNetCoreVersions)'==''">
<AllNetCoreVersions>$(NetCore3PlusVersions)</AllNetCoreVersions>
</PropertyGroup>
<PropertyGroup Condition="'$(AllNetStandardVersions)'==''">
<AllNetStandardVersions>netstandard2.0;netstandard2.1</AllNetStandardVersions>
</PropertyGroup>
<PropertyGroup Condition="$(NetCore3PlusVersions.Contains($(TargetFramework)))">
<DefineConstants>$(DefineConstants);NETCOREAPP3_0_PLUS;NETCOREAPP3_1_PLUS;NETSTANDARD2_0_PLUS;NETSTANDARD2_1_PLUS</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="$(TargetFramework.StartsWith('netstandard2.')) AND '$(TargetFramework)'!='netstandard2.0'">
<DefineConstants>$(DefineConstants);NETSTANDARD2_1_PLUS</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<SpfxAllTargetFrameworks>$(AllNetCoreVersions)</SpfxAllTargetFrameworks>
<SpfxNugetName>SimpleProcessFramework.Core</SpfxNugetName>
</PropertyGroup>
<PropertyGroup Condition="'$(SpfxBuildNet48)'=='true'">
<SpfxAllTargetFrameworks>net48;$(SpfxAllTargetFrameworks)</SpfxAllTargetFrameworks>
<SpfxNugetName>SimpleProcessFramework</SpfxNugetName>
</PropertyGroup>
<!--
<ItemGroup>
<EditorConfigFiles Include="$(MSBuildThisFileDirectory)/.editorconfig"/>
</ItemGroup>
-->
</Project>