-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move common properties to Directory.Build.props
- Loading branch information
1 parent
3bd4721
commit ef50719
Showing
5 changed files
with
30 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<TargetFrameworks>net461;netstandard2.0;net5.0</TargetFrameworks> | ||
<RootNamespace>SIL.IDLImporterTool</RootNamespace> | ||
<Configurations>Debug;Release</Configurations> | ||
<Company>SIL International</Company> | ||
<Authors>SIL International</Authors> | ||
<Product>IDLImporter</Product> | ||
<Copyright>Copyright © 2002-2022 SIL International</Copyright> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageProjectUrl>https://github.com/sillsdev/IdlImporter</PackageProjectUrl> | ||
<OutputPath>$(MSBuildThisFileDirectory)/output/$(Configuration)/</OutputPath> | ||
<PackageOutputPath>$(MSBuildThisFileDirectory)/output</PackageOutputPath> | ||
<SignAssembly>true</SignAssembly> | ||
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)/idlimp.snk</AssemblyOriginatorKeyFile> | ||
<ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>None</ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
<AppendToReleaseNotesProperty><![CDATA[ | ||
See full changelog at https://github.com/sillsdev/IdlImporter/blob/master/CHANGELOG.md]]> | ||
</AppendToReleaseNotesProperty> | ||
<ChangelogFile>$(MSBuildThisFileDirectory)/CHANGELOG.md</ChangelogFile> | ||
<NoWarn>1591</NoWarn> | ||
<UseFullSemVerForNuGet>false</UseFullSemVerForNuGet> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters