|
1 | | -<!-- Copyright 2025 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="CommunityToolkit.Diagnostics" Version="8.4.0" /> |
35 | | - <PackageReference Include="Microsoft.Bcl.Cryptography" Version="9.0.10" /> |
36 | | - <PackageReference Include="Portable.BouncyCastle" Version="1.9.0" /> |
37 | | - <PackageReference Include="System.Formats.Asn1" Version="9.0.10" /> |
38 | | - <PackageReference Include="Xunit.SkippableFact" Version="1.5.23" /> |
39 | | - <ProjectReference Include="..\..\src\Yubico.YubiKey.csproj" /> |
40 | | - <ProjectReference Include="..\unit\Yubico.YubiKey.UnitTests.csproj" /> |
41 | | - <ProjectReference Include="..\utilities\Yubico.YubiKey.TestUtilities.csproj" /> |
42 | | - <PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.10" /> |
43 | | - <PackageReference Include="Serilog" Version="4.3.0" /> |
44 | | - <PackageReference Include="Serilog.Extensions.Logging" Version="9.0.2" /> |
45 | | - <PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" /> |
46 | | - <PackageReference Include="coverlet.collector" Version="6.0.4" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" /> |
47 | | - <PackageReference Include="xunit" Version="2.9.3" /> |
48 | | - <PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" /> |
49 | | - <PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.0" /> |
50 | | - <PackageReference Include="Moq" Version="4.20.72" /> |
51 | | - |
52 | | - <None Update="xunit.runner.json"> |
53 | | - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
54 | | - </None> |
55 | | - |
56 | | - <None Update="appsettings.json"> |
57 | | - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
58 | | - </None> |
59 | | - </ItemGroup> |
60 | | -</Project> |
| 1 | +<!-- Copyright 2025 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="CommunityToolkit.Diagnostics" Version="8.4.0" /> |
| 35 | + <PackageReference Include="Microsoft.Bcl.Cryptography" Version="9.0.10" /> |
| 36 | + <PackageReference Include="Portable.BouncyCastle" Version="1.9.0" /> |
| 37 | + <PackageReference Include="System.Formats.Asn1" Version="9.0.10" /> |
| 38 | + <PackageReference Include="Xunit.SkippableFact" Version="1.5.23" /> |
| 39 | + <ProjectReference Include="..\..\src\Yubico.YubiKey.csproj" /> |
| 40 | + <ProjectReference Include="..\unit\Yubico.YubiKey.UnitTests.csproj" /> |
| 41 | + <ProjectReference Include="..\utilities\Yubico.YubiKey.TestUtilities.csproj" /> |
| 42 | + <PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.10" /> |
| 43 | + <PackageReference Include="Serilog" Version="4.3.0" /> |
| 44 | + <PackageReference Include="Serilog.Extensions.Logging" Version="9.0.2" /> |
| 45 | + <PackageReference Include="Serilog.Sinks.Console" Version="6.1.1" /> |
| 46 | + <PackageReference Include="coverlet.collector" Version="6.0.4" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" /> |
| 47 | + <PackageReference Include="xunit" Version="2.9.3" /> |
| 48 | + <PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" /> |
| 49 | + <PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.0" /> |
| 50 | + <PackageReference Include="Moq" Version="4.20.72" /> |
| 51 | + |
| 52 | + <None Update="xunit.runner.json"> |
| 53 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 54 | + </None> |
| 55 | + |
| 56 | + <None Update="appsettings.json"> |
| 57 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 58 | + </None> |
| 59 | + </ItemGroup> |
| 60 | +</Project> |
0 commit comments