-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Directory.Build.props
34 lines (34 loc) · 1.89 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
<Project>
<PropertyGroup>
<TargetFrameworks>net462</TargetFrameworks>
<Configurations>Debug;Release</Configurations>
<Description>End-user collaboration library via 3-way xml merging and hg dvcs under the hood.</Description>
<Company>SIL International</Company>
<Authors>SIL International</Authors>
<Product>chorus</Product>
<Copyright>Copyright © 2010-2023 SIL International</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/sillsdev/chorus</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<OutputPath>../../output/$(Configuration)</OutputPath>
<PackageOutputPath>../../output</PackageOutputPath>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>../FieldWorks.snk</AssemblyOriginatorKeyFile>
<ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>None</ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<AppendToReleaseNotesProperty><![CDATA[
See full changelog at https://github.com/sillsdev/chorus/blob/master/CHANGELOG.md]]>
</AppendToReleaseNotesProperty>
<ChangelogFile>../../CHANGELOG.md</ChangelogFile>
<NoWarn>1591</NoWarn>
<UseFullSemVerForNuGet>false</UseFullSemVerForNuGet>
<!-- We have to explicitly set PlatformTarget because we indirectly depend on icu4c which
has platform dependent binaries, so msbuild decides that Chorus is platform specific,
regardless of the actual platform target. For the same reason we have to set
RuntimeIdentifiers when building with .NET 5 on AppVeyor. Otherwise the build
fails with an error that there is no target for'net462/win7-x86'. -->
<PlatformTarget>AnyCPU</PlatformTarget>
<RuntimeIdentifiers>win-x86;win-x64</RuntimeIdentifiers>
</PropertyGroup>
</Project>