-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Lib updates + version bump to 2.1 + changed minimum to net452
- Loading branch information
Showing
9 changed files
with
26 additions
and
31 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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
dotnet pack src\HelloSignApi\HelloSignApi.csproj -c Release | ||
dotnet pack src\HelloSignApi\HelloSignApi.csproj -c Release /p:ContinuousIntegrationBuild=true | ||
explorer src\HelloSignApi\bin\release |
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
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,46 +1,37 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>net40;net45;net461;netstandard1.3;netstandard2.0</TargetFrameworks> | ||
<TargetFrameworks>net452;net462;netstandard1.3;netstandard2.0;net6.0</TargetFrameworks> | ||
<AssemblyName>HelloSignApi</AssemblyName> | ||
<RootNamespace>HelloSignApi</RootNamespace> | ||
<PackageId>HelloSignApi</PackageId> | ||
<Description>Unofficial task-based HelloSign api lib for dotnet with intellisense doc.</Description> | ||
<Company>Yin-Chun Wang</Company> | ||
<Product>HelloSignApi</Product> | ||
<PackageLicenseUrl>https://raw.githubusercontent.com/soukoku/HelloSignApi/master/LICENSE</PackageLicenseUrl> | ||
<PackageProjectUrl>https://github.com/soukoku/HelloSignApi</PackageProjectUrl> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<Authors>Yin-Chun Wang</Authors> | ||
<PackageTags>eSignature</PackageTags> | ||
<AssemblyTitle>HelloSignApi</AssemblyTitle> | ||
<Copyright>Copyright (C) Yin-Chun Wang 2017-2019</Copyright> | ||
<Copyright>Copyright (C) Yin-Chun Wang 2017-2022</Copyright> | ||
<Authors>Yin-Chun Wang</Authors> | ||
<WarningsAsErrors>true</WarningsAsErrors> | ||
<GenerateDocumentationFile Condition=" '$(Configuration)' == 'Release' ">true</GenerateDocumentationFile> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AlloedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> | ||
<AssemblyOriginatorKeyFile>Sign.snk</AssemblyOriginatorKeyFile> | ||
<SignAssembly>true</SignAssembly> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
<Version>2.0.3.0</Version> | ||
<Version>2.1.0.0</Version> | ||
<FileVersion>2.0.0.0</FileVersion> | ||
<AssemblyVersion>2.0.0.0</AssemblyVersion> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" /> | ||
</ItemGroup> | ||
<ItemGroup Condition=" '$(TargetFramework)' == 'net40' "> | ||
<PackageReference Include="Microsoft.Net.Http" Version="2.2.29" /> | ||
<Reference Include="PresentationCore" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" /> | ||
<PackageReference Include="System.Drawing.Primitives" Version="4.3.0" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" /> | ||
</ItemGroup> | ||
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' "> | ||
<ItemGroup Condition="$(TargetFramework.StartsWith('net4'))"> | ||
<Reference Include="System.Net.Http" /> | ||
<Reference Include="PresentationCore" /> | ||
</ItemGroup> | ||
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' "> | ||
<Reference Include="System.Net.Http" /> | ||
<Reference Include="PresentationCore" /> | ||
</ItemGroup> | ||
<PropertyGroup Condition="$(TargetFramework.StartsWith('net4'))"> | ||
<DefineConstants>$(DefineConstants);FULLFX</DefineConstants> | ||
</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