-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
47 lines (39 loc) · 1.83 KB
/
Directory.Build.props
File metadata and controls
47 lines (39 loc) · 1.83 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
<Project>
<PropertyGroup>
<!--Versioning-->
<VersionPrefix>5.0.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<!-- Targets -->
<LangVersion>8.0</LangVersion>
<!--NuGet-->
<Authors>Anthony Reilly</Authors>
<Copyright>2025 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>
<!-- Intentionally targeting EOL frameworks -->
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<!--Project Root-->
<SolutionDir>$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), *.sln))</SolutionDir>
</PropertyGroup>
<PropertyGroup>
<LibTargetFrameworks>netstandard2.0;netstandard2.1;netcoreapp3.1;net5.0;net6.0;net7.0;net8.0;net9.0;net462;net472;net48</LibTargetFrameworks>
<AppTargetFrameworks>net6.0;net7.0;net8.0;net9.0</AppTargetFrameworks>
</PropertyGroup>
<Choose>
<When Condition="$([MSBuild]::IsOSPlatform('OSX')) OR $([MSBuild]::IsOSPlatform('Linux'))">
<PropertyGroup>
<TestTargetFrameworks>net6.0;net7.0;net8.0;net9.0</TestTargetFrameworks>
</PropertyGroup>
</When>
<Otherwise>
<PropertyGroup>
<TestTargetFrameworks>netcoreapp3.1;net5.0;net6.0;net7.0;net8.0;net9.0;net462;net472;net48</TestTargetFrameworks>
</PropertyGroup>
</Otherwise>
</Choose>
</Project>