-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Directory.Build.props
35 lines (35 loc) · 1.83 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>
<TargetFrameworks>net462</TargetFrameworks>
<Configurations>Debug;Release</Configurations>
<Description>Library that allows multiple FieldWorks users to collaborate remotely (i.e., not necessarily connected by a local network).</Description>
<Company>SIL</Company>
<Authors>SIL International</Authors>
<Product>FLExBridge</Product>
<Copyright>Copyright © 2010-2021 SIL International</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/sillsdev/flexbridge</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<OutputPath>../../output/$(Configuration)</OutputPath>
<PackageOutputPath>../../output</PackageOutputPath>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)/Flexbridge.snk</AssemblyOriginatorKeyFile>
<ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>None</ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<AppendToReleaseNotesProperty><![CDATA[
See full changelog at https://github.com/sillsdev/flexbridge/blob/develop/CHANGELOG.md]]>
</AppendToReleaseNotesProperty>
<ChangelogFile>../../CHANGELOG.md</ChangelogFile>
<UseFullSemVerForNuGet>false</UseFullSemVerForNuGet>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<ChorusVersion>6.0.0-beta0059</ChorusVersion>
<LCModelVersion>11.0.0-beta*</LCModelVersion>
</PropertyGroup>
<ItemGroup>
<!-- The only reason we depend directly on L10NSharp is because our dependencies can't agree which one they want -->
<PackageReference Include="L10NSharp" Version="8.0.0-beta0005" />
</ItemGroup>
</Project>