-
Notifications
You must be signed in to change notification settings - Fork 309
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #543 from bothzoli/create-strong-named-nuget-package
Create strong named assembiles
- Loading branch information
Showing
8 changed files
with
117 additions
and
34 deletions.
There are no files selected for viewing
48 changes: 48 additions & 0 deletions
48
CSharpFunctionalExtensions.StrongName/CSharpFunctionalExtensions.StrongName.csproj
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,48 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Import Project="../Common.Build.props"/> | ||
|
||
<PropertyGroup> | ||
<PackageId>CSharpFunctionalExtensions.StrongName</PackageId> | ||
<AssemblyOriginatorKeyFile>CSharpFunctionalExtensions.snk</AssemblyOriginatorKeyFile> | ||
<SignAssembly>true</SignAssembly> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(TargetFramework)'=='net45'"> | ||
<AssemblyTitle>CSharpFunctionalExtensions (with a strong name) .NET 4.5</AssemblyTitle> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(TargetFramework)'=='net461'"> | ||
<AssemblyTitle>CSharpFunctionalExtensions (with a strong name) .NET 4.6.1</AssemblyTitle> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(TargetFramework)'=='netstandard2.0'"> | ||
<AssemblyTitle>CSharpFunctionalExtensions (with a strong name) .NET Standard 2.0</AssemblyTitle> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(TargetFramework)'=='net5.0'"> | ||
<AssemblyTitle>CSharpFunctionalExtensions (with a strong name) .NET 5.0</AssemblyTitle> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(TargetFramework)'=='net6.0'"> | ||
<AssemblyTitle>CSharpFunctionalExtensions (with a strong name) .NET 6.0</AssemblyTitle> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Condition="'$(TargetFramework)'=='net40'"> | ||
<PackageReference Include="Microsoft.Bcl.Async" Version="1.0.168"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="!$(DefineConstants.Contains('NET5_0_OR_GREATER')) and !$(DefineConstants.Contains('NETCORE'))"> | ||
<EmbeddedResource Remove="Result\Json\Serialization\**"/> | ||
<None Remove="Result\Json\Serialization\**"/> | ||
<Compile Include="..\CSharpFunctionalExtensions\**\*.cs" | ||
Exclude="..\CSharpFunctionalExtensions\obj\**\*.cs;..\CSharpFunctionalExtensions\Result\Json\Serialization\**"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition="$(DefineConstants.Contains('NET5_0_OR_GREATER')) or $(DefineConstants.Contains('NETCORE'))"> | ||
<Compile Include="..\CSharpFunctionalExtensions\**\*.cs" Exclude="..\CSharpFunctionalExtensions\obj\**\*.cs"/> | ||
</ItemGroup> | ||
|
||
</Project> |
Binary file added
BIN
+596 Bytes
CSharpFunctionalExtensions.StrongName/CSharpFunctionalExtensions.snk
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<TargetFrameworks>net40;net45;net461;netstandard2.0;net5.0;net6.0</TargetFrameworks> | ||
<Authors>Vladimir Khorikov</Authors> | ||
<Description>CSharpFunctionalExtensions - functional extensions for C#</Description> | ||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> | ||
<PackageTags>C# Functional</PackageTags> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageProjectUrl>https://enterprisecraftsmanship.com/ps-func</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/vkhorikov/CSharpFunctionalExtensions/</RepositoryUrl> | ||
<NeutralLanguage>en-US</NeutralLanguage> | ||
<GeneratePackageOnBuild>false</GeneratePackageOnBuild> | ||
<LangVersion>9.0</LangVersion> | ||
<GeneratePackageOnBuild>false</GeneratePackageOnBuild> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> | ||
<NoWarn>1591;1701;1702</NoWarn> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
2.42.0 | ||
2.42.1 | ||
New features: | ||
* #540 Add BindZip to return the Tuple of merged Binds | ||
* None | ||
|
||
Fixed issues: | ||
* None | ||
* #27 Add strong named assembly |