|
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFramework>net5.0</TargetFramework> |
| 5 | + <IsPackable>false</IsPackable> |
| 6 | + <Authors>Mastercard</Authors> |
| 7 | + <Company>Mastercard</Company> |
| 8 | + <!-- See: https://docs.microsoft.com/en-us/dotnet/standard/library-guidance/strong-naming --> |
| 9 | + <SignAssembly>true</SignAssembly> |
| 10 | + <AssemblyOriginatorKeyFile>../../Identity.snk</AssemblyOriginatorKeyFile> |
| 11 | + <AssemblyVersion>1.0.0.0</AssemblyVersion> |
| 12 | + <FileVersion>1.0.0.0</FileVersion> |
| 13 | + </PropertyGroup> |
| 14 | + |
| 15 | + <ItemGroup> |
| 16 | + <Compile Include="..\NetCore2\Authenticators\RestSharpOAuth1AuthenticatorTest.cs"> |
| 17 | + <Link>Authenticators\RestSharpOAuth1AuthenticatorTest.cs</Link> |
| 18 | + </Compile> |
| 19 | + <Compile Include="..\NetCore2\Authenticators\RestSharpV2OAuth1AuthenticatorTest.cs"> |
| 20 | + <Link>Authenticators\RestSharpV2OAuth1AuthenticatorTest.cs</Link> |
| 21 | + </Compile> |
| 22 | + <Compile Include="..\NetCore2\OAuthTest.cs"> |
| 23 | + <Link>OAuthTest.cs</Link> |
| 24 | + </Compile> |
| 25 | + <Compile Include="..\NetCore2\Signers\NetHttpClientSignerTest.cs"> |
| 26 | + <Link>Signers\NetHttpClientSignerTest.cs</Link> |
| 27 | + </Compile> |
| 28 | + <Compile Include="..\NetCore2\Signers\RestSharpSignerTest.cs"> |
| 29 | + <Link>Signers\RestSharpSignerTest.cs</Link> |
| 30 | + </Compile> |
| 31 | + <Compile Include="..\NetCore2\Signers\RestSharpV2SignerTest.cs"> |
| 32 | + <Link>Signers\RestSharpV2SignerTest.cs</Link> |
| 33 | + </Compile> |
| 34 | + <Compile Include="..\NetCore2\Test\TestUtils.cs"> |
| 35 | + <Link>Test\TestUtils.cs</Link> |
| 36 | + </Compile> |
| 37 | + <Compile Include="..\NetCore2\Utils\AuthenticationUtilsTest.cs"> |
| 38 | + <Link>Utils\AuthenticationUtilsTest.cs</Link> |
| 39 | + </Compile> |
| 40 | + <Compile Include="..\NetCore2\Utils\SecurityUtilsTest.cs"> |
| 41 | + <Link>Utils\SecurityUtilsTest.cs</Link> |
| 42 | + </Compile> |
| 43 | + </ItemGroup> |
| 44 | + |
| 45 | + <ItemGroup> |
| 46 | + <EmbeddedResource Include="..\NetCore2\_Resources\test_key_container.p12"> |
| 47 | + <Link>_Resources\test_key_container.p12</Link> |
| 48 | + <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
| 49 | + </EmbeddedResource> |
| 50 | + </ItemGroup> |
| 51 | + |
| 52 | + <ItemGroup> |
| 53 | + <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" /> |
| 54 | + <PackageReference Include="MSTest.TestAdapter" Version="2.1.2" /> |
| 55 | + <PackageReference Include="MSTest.TestFramework" Version="2.1.2" /> |
| 56 | + <PackageReference Include="coverlet.collector" Version="1.3.0" /> |
| 57 | + </ItemGroup> |
| 58 | + |
| 59 | + <ItemGroup> |
| 60 | + <ProjectReference Include="..\..\Mastercard.Developer.OAuth1Signer.Core\Mastercard.Developer.OAuth1Signer.Core.csproj" /> |
| 61 | + <ProjectReference Include="..\..\Mastercard.Developer.OAuth1Signer.RestSharpV2\Mastercard.Developer.OAuth1Signer.RestSharpV2.csproj" /> |
| 62 | + <ProjectReference Include="..\..\Mastercard.Developer.OAuth1Signer.RestSharp\Mastercard.Developer.OAuth1Signer.RestSharp.csproj" /> |
| 63 | + </ItemGroup> |
| 64 | + |
| 65 | +</Project> |
0 commit comments