|
1 |
| -<!-- Copyright 2021 Yubico AB |
2 |
| -
|
3 |
| -Licensed under the Apache License, Version 2.0 (the "License"); |
4 |
| -you may not use this file except in compliance with the License. |
5 |
| -You may obtain a copy of the License at |
6 |
| -
|
7 |
| - http://www.apache.org/licenses/LICENSE-2.0 |
8 |
| -
|
9 |
| -Unless required by applicable law or agreed to in writing, software |
10 |
| -distributed under the License is distributed on an "AS IS" BASIS, |
11 |
| -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
12 |
| -See the License for the specific language governing permissions and |
13 |
| -limitations under the License. --> |
14 |
| - |
15 |
| -<Project Sdk="Microsoft.NET.Sdk"> |
16 |
| - |
17 |
| - <PropertyGroup> |
18 |
| - <AssemblyName>Yubico.YubiKey.IntegrationTests</AssemblyName> |
19 |
| - <RootNamespace></RootNamespace> |
20 |
| - <PackageId>Yubico.YubiKey.IntegrationTests</PackageId> |
21 |
| - |
22 |
| - <TargetFramework>net8.0</TargetFramework> |
23 |
| - |
24 |
| - <AnalysisMode>AllDisabledByDefault</AnalysisMode> |
25 |
| - |
26 |
| - <!-- StrongName signing --> |
27 |
| - <!-- StrongNaming requires that friend assemblies are strong named as well. That means this unit test project must |
28 |
| - be strong named, since it uses InternalsVisibleTo. --> |
29 |
| - <SignAssembly>true</SignAssembly> |
30 |
| - <AssemblyOriginatorKeyFile>..\..\..\Yubico.NET.SDK.snk</AssemblyOriginatorKeyFile> |
31 |
| - </PropertyGroup> |
32 |
| - |
33 |
| - <ItemGroup> |
34 |
| - <PackageReference Include="Portable.BouncyCastle" Version="1.9.0" /> |
35 |
| - <PackageReference Include="System.Formats.Asn1" Version="9.0.3" /> |
36 |
| - <PackageReference Include="Xunit.SkippableFact" Version="1.4.13" /> |
37 |
| - <ProjectReference Include="..\..\src\Yubico.YubiKey.csproj" /> |
38 |
| - <ProjectReference Include="..\unit\Yubico.YubiKey.UnitTests.csproj" /> |
39 |
| - <ProjectReference Include="..\utilities\Yubico.YubiKey.TestUtilities.csproj" /> |
40 |
| - <PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" /> |
41 |
| - <PackageReference Include="Serilog" Version="3.1.1" /> |
42 |
| - <PackageReference Include="Serilog.Extensions.Logging" Version="7.0.0" /> |
43 |
| - <PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" /> |
44 |
| - <PackageReference Include="coverlet.collector" Version="6.0.2" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" /> |
45 |
| - <PackageReference Include="xunit" Version="2.8.1" /> |
46 |
| - <PackageReference Include="xunit.runner.visualstudio" Version="2.8.1" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" /> |
47 |
| - <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" /> |
48 |
| - <PackageReference Include="Moq" Version="4.16.1" /> |
49 |
| - |
50 |
| - <None Update="xunit.runner.json"> |
51 |
| - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
52 |
| - </None> |
53 |
| - |
54 |
| - <None Update="appsettings.json"> |
55 |
| - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
56 |
| - </None> |
57 |
| - </ItemGroup> |
58 |
| -</Project> |
| 1 | +<!-- Copyright 2021 Yubico AB |
| 2 | +
|
| 3 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +you may not use this file except in compliance with the License. |
| 5 | +You may obtain a copy of the License at |
| 6 | +
|
| 7 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +
|
| 9 | +Unless required by applicable law or agreed to in writing, software |
| 10 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +See the License for the specific language governing permissions and |
| 13 | +limitations under the License. --> |
| 14 | + |
| 15 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 16 | + |
| 17 | + <PropertyGroup> |
| 18 | + <AssemblyName>Yubico.YubiKey.IntegrationTests</AssemblyName> |
| 19 | + <RootNamespace></RootNamespace> |
| 20 | + <PackageId>Yubico.YubiKey.IntegrationTests</PackageId> |
| 21 | + |
| 22 | + <TargetFramework>net8.0</TargetFramework> |
| 23 | + |
| 24 | + <AnalysisMode>AllDisabledByDefault</AnalysisMode> |
| 25 | + |
| 26 | + <!-- StrongName signing --> |
| 27 | + <!-- StrongNaming requires that friend assemblies are strong named as well. That means this unit test project must |
| 28 | + be strong named, since it uses InternalsVisibleTo. --> |
| 29 | + <SignAssembly>true</SignAssembly> |
| 30 | + <AssemblyOriginatorKeyFile>..\..\..\Yubico.NET.SDK.snk</AssemblyOriginatorKeyFile> |
| 31 | + </PropertyGroup> |
| 32 | + |
| 33 | + <ItemGroup> |
| 34 | + <PackageReference Include="Portable.BouncyCastle" Version="1.9.0" /> |
| 35 | + <PackageReference Include="System.Formats.Asn1" Version="9.0.6" /> |
| 36 | + <PackageReference Include="Xunit.SkippableFact" Version="1.5.23" /> |
| 37 | + <ProjectReference Include="..\..\src\Yubico.YubiKey.csproj" /> |
| 38 | + <ProjectReference Include="..\unit\Yubico.YubiKey.UnitTests.csproj" /> |
| 39 | + <ProjectReference Include="..\utilities\Yubico.YubiKey.TestUtilities.csproj" /> |
| 40 | + <PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.6" /> |
| 41 | + <PackageReference Include="Serilog" Version="4.3.0" /> |
| 42 | + <PackageReference Include="Serilog.Extensions.Logging" Version="9.0.2" /> |
| 43 | + <PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" /> |
| 44 | + <PackageReference Include="coverlet.collector" Version="6.0.4" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" /> |
| 45 | + <PackageReference Include="xunit" Version="2.9.3" /> |
| 46 | + <PackageReference Include="xunit.runner.visualstudio" Version="3.1.1" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" /> |
| 47 | + <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" /> |
| 48 | + <PackageReference Include="Moq" Version="4.20.72" /> |
| 49 | + |
| 50 | + <None Update="xunit.runner.json"> |
| 51 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 52 | + </None> |
| 53 | + |
| 54 | + <None Update="appsettings.json"> |
| 55 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 56 | + </None> |
| 57 | + </ItemGroup> |
| 58 | +</Project> |
0 commit comments