-
-
Notifications
You must be signed in to change notification settings - Fork 970
Merge nuspec and CommonAssemblyInfo into csproj #1256
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 4 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
317c38c
GeneratePackageOnBuild
scott-xu 4eb2360
Add packages to artifacts
scott-xu 1593dd2
Merge branch 'develop' into generate-nuget-package
scott-xu 3c0f4ed
Merge branch 'develop' into generate-nuget-package
scott-xu f33918a
Update src/Renci.SshNet/Renci.SshNet.csproj
scott-xu 8bad9d6
Merge branch 'develop' into generate-nuget-package
scott-xu e58ae57
Merge branch 'develop' into generate-nuget-package
scott-xu 2a74e7a
Update Renci.SshNet.csproj
scott-xu 2b47495
Merge branch 'develop' into generate-nuget-package
scott-xu 83f522d
Merge branch 'develop' into generate-nuget-package
scott-xu dc4deb3
Merge branch 'develop' into generate-nuget-package
scott-xu faae7d6
Delete build/nuget/SSH.NET.nuspec
scott-xu 196789c
Delete SSH.NET.nuspec from .sln file
scott-xu f0af300
Merge branch 'develop' into generate-nuget-package
scott-xu 28ad3c1
Update Renci.SshNet.csproj
scott-xu 366c324
Update build.proj
scott-xu 505bd4d
Merge branch 'sshnet:develop' into generate-nuget-package
scott-xu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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,23 +1,53 @@ | ||
| <Project Sdk="Microsoft.NET.Sdk"> | ||
| <PropertyGroup> | ||
| <GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
| <AssemblyName>Renci.SshNet</AssemblyName> | ||
| <TargetFrameworks>net462;netstandard2.0;netstandard2.1;net6.0;net7.0;net8.0</TargetFrameworks> | ||
| <Product>SSH.NET</Product> | ||
| <AssemblyTitle>SSH.NET</AssemblyTitle> | ||
| <TargetFrameworks>net462;netstandard2.0;netstandard2.1;net6.0;net7.0;net8.0</TargetFrameworks> | ||
| </PropertyGroup> | ||
|
|
||
| <PropertyGroup> | ||
| <GeneratePackageOnBuild>True</GeneratePackageOnBuild> | ||
| <PackageId>SSH.NET</PackageId> | ||
| <Title>SSH.NET</Title> | ||
| <Version>2023.0.1</Version> | ||
| <Description>SSH.NET is a Secure Shell (SSH) library for .NET, optimized for parallelism.</Description> | ||
| <Copyright>Copyright © Renci 2010-2023</Copyright> | ||
scott-xu marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| <PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
| <Authors>Renci</Authors> | ||
| <PackageIcon>SS-NET-icon-h500.png</PackageIcon> | ||
| <PackageReadmeFile>README.md</PackageReadmeFile> | ||
| <PackageTags>ssh; scp; sftp</PackageTags> | ||
| <PackageReleaseNotes>https://github.com/sshnet/SSH.NET/releases/tag/$(Version)</PackageReleaseNotes> | ||
| <IncludeSymbols>True</IncludeSymbols> | ||
| <SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
| </PropertyGroup> | ||
|
|
||
| <PropertyGroup Condition=" '$(TargetFramework)' == 'net462' "> | ||
| <DefineConstants>$(DefineConstants);FEATURE_BINARY_SERIALIZATION;FEATURE_SOCKET_EAP;FEATURE_SOCKET_APM;FEATURE_DNS_SYNC;FEATURE_HASH_RIPEMD160_CREATE;FEATURE_HMAC_RIPEMD160</DefineConstants> | ||
| </PropertyGroup> | ||
|
|
||
| <PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'netstandard2.1' or '$(TargetFramework)' == 'net6.0' or '$(TargetFramework)' == 'net7.0' or '$(TargetFramework)' == 'net8.0' "> | ||
| <DefineConstants>$(DefineConstants);FEATURE_SOCKET_TAP;FEATURE_SOCKET_APM;FEATURE_SOCKET_EAP;FEATURE_DNS_SYNC;FEATURE_DNS_APM;FEATURE_DNS_TAP</DefineConstants> | ||
| </PropertyGroup> | ||
|
|
||
| <ItemGroup Condition=" '$(TargetFramework)' == 'net462' or '$(TargetFramework)' == 'netstandard2.0' "> | ||
| <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="7.0.0" /> | ||
| </ItemGroup> | ||
|
|
||
| <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'netstandard2.1' or '$(TargetFramework)' == 'net6.0' or '$(TargetFramework)' == 'net7.0' or '$(TargetFramework)' == 'net8.0' "> | ||
| <PackageReference Include="SshNet.Security.Cryptography" Version="[1.3.0]" /> | ||
| </ItemGroup> | ||
|
|
||
| <ItemGroup Condition=" '$(TargetFramework)' == 'net462' or '$(TargetFramework)' == 'netstandard2.0' "> | ||
| <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="7.0.0" /> | ||
| <ItemGroup> | ||
| <None Include="..\..\images\logo\png\SS-NET-icon-h500.png"> | ||
| <Pack>True</Pack> | ||
| <PackagePath>\</PackagePath> | ||
| </None> | ||
| <None Include="..\..\README.md"> | ||
| <Pack>True</Pack> | ||
| <PackagePath>\</PackagePath> | ||
| </None> | ||
| </ItemGroup> | ||
|
|
||
| <PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'netstandard2.1' or '$(TargetFramework)' == 'net6.0' or '$(TargetFramework)' == 'net7.0' or '$(TargetFramework)' == 'net8.0' "> | ||
| <DefineConstants>$(DefineConstants);FEATURE_SOCKET_TAP;FEATURE_SOCKET_APM;FEATURE_SOCKET_EAP;FEATURE_DNS_SYNC;FEATURE_DNS_APM;FEATURE_DNS_TAP</DefineConstants> | ||
| </PropertyGroup> | ||
| </Project> | ||
| </Project> | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.