-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added strong name HTTP client package
- Loading branch information
1 parent
a11338b
commit 50a8b12
Showing
4 changed files
with
94 additions
and
2 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
18 changes: 18 additions & 0 deletions
18
...Client.Common.StrongName/fiskaltrust.Middleware.Interface.Client.Common.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,18 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks> | ||
<LangVersion>8</LangVersion> | ||
<IsPackable>false</IsPackable> | ||
<SignAssembly>true</SignAssembly> | ||
<AssemblyOriginatorKeyFile>../fiskaltrust.interface.StrongName/fiskaltrust.interface.snk</AssemblyOriginatorKeyFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="fiskaltrust.interface.StrongName" Version="1.3.1" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="..\fiskaltrust.Middleware.Interface.Client.Common\**\*.cs" Exclude="..\fiskaltrust.Middleware.Interface.Client.Common\obj\**\*.cs" /> | ||
</ItemGroup> | ||
</Project> |
50 changes: 50 additions & 0 deletions
50
...ace.Client.Http.StrongName/fiskaltrust.Middleware.Interface.Client.Http.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,50 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks> | ||
<LangVersion>8</LangVersion> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="fiskaltrust.interface.StrongName" Version="1.3.1" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\fiskaltrust.Middleware.Interface.Client.Common.StrongName\fiskaltrust.Middleware.Interface.Client.Common.StrongName.csproj"> | ||
<PrivateAssets>all</PrivateAssets> | ||
</ProjectReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="..\fiskaltrust.Middleware.Interface.Client.Http\**\*.cs" Exclude="..\fiskaltrust.Middleware.Interface.Client.Http\obj\**\*.cs" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<_PackageFiles Include="$(OutputPath)\net461\fiskaltrust.Middleware.Interface.Client.Common.dll"> | ||
<BuildAction>None</BuildAction> | ||
<PackagePath>lib\net461\</PackagePath> | ||
</_PackageFiles> | ||
<_PackageFiles Include="$(OutputPath)\netstandard2.0\fiskaltrust.Middleware.Interface.Client.Common.dll"> | ||
<BuildAction>None</BuildAction> | ||
<PackagePath>lib\netstandard2.0\</PackagePath> | ||
</_PackageFiles> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<PackageId>fiskaltrust.Middleware.Interface.Client.Http.StrongName</PackageId> | ||
<Authors>fiskaltrust</Authors> | ||
<Company>fiskaltrust</Company> | ||
<PackageLicenseUrl>https://github.com/fiskaltrust/middleware-interface-dotnet/LICENSE</PackageLicenseUrl> | ||
<PackageProjectUrl>https://github.com/fiskaltrust/middleware-interface-dotnet</PackageProjectUrl> | ||
<PackageIconUrl>https://portal.fiskaltrust.at/Content/favicons/favicon-64x64.png</PackageIconUrl> | ||
<Description>An optional helper implementation to simplify the usage of the fiskaltrust Middleware interface via HTTP.</Description> | ||
<Copyright>Copyright 2020</Copyright> | ||
<PackageTags>fiskaltrust interface</PackageTags> | ||
<AssemblyCompany>fiskaltrust</AssemblyCompany> | ||
<AssemblyProduct>fiskaltrust.Middleware.Interface.Http.StrongName</AssemblyProduct> | ||
<SignAssembly>true</SignAssembly> | ||
<AssemblyOriginatorKeyFile>../fiskaltrust.interface.StrongName/fiskaltrust.interface.snk</AssemblyOriginatorKeyFile> | ||
</PropertyGroup> | ||
|
||
</Project> |
7 changes: 7 additions & 0 deletions
7
src/fiskaltrust.Middleware.Interface.Client.Http.StrongName/version.json
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,7 @@ | ||
{ | ||
"version": "1.3.4", | ||
"releaseBranches": [ | ||
"^refs/heads/master$", | ||
"^refs/tags/v\\d+(?:\\.\\d+)*(?:-.*)?$" | ||
] | ||
} |