-
Notifications
You must be signed in to change notification settings - Fork 64
/
build.props
39 lines (32 loc) · 1.71 KB
/
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
<Project>
<PropertyGroup>
<!--Versioning-->
<VersionPrefix>4.1.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<!-- Targets -->
<LangVersion>8.0</LangVersion>
<!--NuGet-->
<Authors>Anthony Reilly</Authors>
<Copyright>2024 Anthony Reilly</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/anthonyreilly/NetCoreForce</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageTags>salesforce,api,forcedotcom,netstandard,netcore</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/anthonyreilly/NetCoreForce</RepositoryUrl>
<PackageReleaseNotes>Release notes and documentation can be found on the project site: https://github.com/anthonyreilly/NetCoreForce</PackageReleaseNotes>
<!--Project Root-->
<SolutionDir>$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), *.sln))</SolutionDir>
</PropertyGroup>
<!-- Targets -->
<PropertyGroup Condition="!$([MSBuild]::IsOSPlatform('OSX!'))">
<LibTargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net7.0;net8.0</LibTargetFrameworks>
<AppTargetFrameworks>netcoreapp2.1;netcoreapp3.1;net6.0;net7.0;net8.0</AppTargetFrameworks>
<TestTargetFrameworks>netcoreapp2.1;netcoreapp3.1;net6.0;net7.0;net8.0</TestTargetFrameworks>
</PropertyGroup>
<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('OSX'))">
<LibTargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net7.0;net8.0</LibTargetFrameworks>
<AppTargetFrameworks>net6.0;net7.0;net8.0</AppTargetFrameworks>
<TestTargetFrameworks>net6.0;net7.0;net8.0</TestTargetFrameworks>
</PropertyGroup>
</Project>