forked from pthomson/i18n.core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
35 lines (30 loc) · 1.79 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
<Project>
<PropertyGroup>
<LangVersion>9.0</LangVersion>
</PropertyGroup>
<PropertyGroup>
<OsPlatform Condition="$(OsPlatform) == '' AND '$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))' == 'true'">Windows</OsPlatform>
<OsPlatform Condition="$(OsPlatform) == '' AND '$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))' == 'true'">Linux</OsPlatform>
<OsPlatform Condition="$(OsPlatform) == ''">Unknown</OsPlatform>
<IsNetCoreApp Condition="$(TargetFramework.StartsWith('netcoreapp')) OR $(TargetFramework) == 'net5.0'">true</IsNetCoreApp>
<IsNetCoreApp Condition="'$(IsNetCoreApp)' == ''">false</IsNetCoreApp>
<IsCIBuild Condition="$(IsCIBuild) == ''">false</IsCIBuild>
</PropertyGroup>
<PropertyGroup Condition="$(IsNetCoreApp)">
<DefineConstants>$(DefineConstants);NETCOREAPP;</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<Authors>Peter Rekdal Sunde</Authors>
<Copyright>Copyright © Finter Mobility As</Copyright>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://github.com/fintermobilityas/i18n.core</PackageProjectUrl>
<RepositoryUrl>https://github.com/fintermobilityas/i18n.core.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<IsPackable>false</IsPackable>
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
<NoPackageAnalysis>true</NoPackageAnalysis>
<GeneratePackageOnBuild Condition="$(GeneratePackageOnBuild) == ''">false</GeneratePackageOnBuild>
<PackageOutputPath>$(MSBuildThisFileDirectory)nupkgs</PackageOutputPath>
</PropertyGroup>
</Project>