Skip to content

Commit 4fde64d

Browse files
committed
Updating test and example projects target framework to net8.
From netcoreapp3.1, which is no longer supported.
1 parent e63192c commit 4fde64d

File tree

3 files changed

+15
-6
lines changed

3 files changed

+15
-6
lines changed

CompactCryptoGroupAlgebra.LibCrypto.Tests/CompactCryptoGroupAlgebra.LibCrypto.Tests.csproj

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<!--
22
CompactCryptoGroupAlgebra - C# implementation of abelian group algebra for experimental cryptography
33
4-
SPDX-FileCopyrightText: 2020-2021 Lukas Prediger <lumip@lumip.de>
4+
SPDX-FileCopyrightText: 2020-2024 Lukas Prediger <lumip@lumip.de>
55
SPDX-License-Identifier: GPL-3.0-or-later WITH GPL-3.0-linking-exception
66
SPDX-FileType: SOURCE
77
-->
88
<Project Sdk="Microsoft.NET.Sdk">
99

1010
<PropertyGroup>
11-
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
11+
<TargetFrameworks>net8</TargetFrameworks>
1212
<LangVersion>8.0</LangVersion>
1313
<AssemblyName>CompactCryptoGroupAlgebra.LibCrypto.Tests</AssemblyName>
1414
<RootNamespace>CompactCryptoGroupAlgebra.LibCrypto</RootNamespace>
@@ -21,6 +21,15 @@ SPDX-FileType: SOURCE
2121
<Copyright>Copyright © 2021 Lukas Prediger</Copyright>
2222
</PropertyGroup>
2323

24+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
25+
<DebugType>full</DebugType>
26+
<OutputPath>bin/$(Configuration)/</OutputPath>
27+
</PropertyGroup>
28+
29+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
30+
<OutputPath>bin/$(Configuration)/</OutputPath>
31+
</PropertyGroup>
32+
2433
<ItemGroup>
2534
<PackageReference Include="Moq" Version="4.13.1" />
2635
<PackageReference Include="NUnit" Version="3.12.0" />

CompactCryptoGroupAlgebra.Tests/CompactCryptoGroupAlgebra.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<!--
22
CompactCryptoGroupAlgebra - C# implementation of abelian group algebra for experimental cryptography
33
4-
SPDX-FileCopyrightText: 2020-2021 Lukas Prediger <lumip@lumip.de>
4+
SPDX-FileCopyrightText: 2020-2024 Lukas Prediger <lumip@lumip.de>
55
SPDX-License-Identifier: GPL-3.0-or-later
66
SPDX-FileType: SOURCE
77
-->
88
<Project Sdk="Microsoft.NET.Sdk">
99

1010
<PropertyGroup>
11-
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
11+
<TargetFrameworks>net8</TargetFrameworks>
1212
<LangVersion>8.0</LangVersion>
1313
<AssemblyName>CompactCryptoGroupAlgebra.Tests</AssemblyName>
1414
<RootNamespace>CompactCryptoGroupAlgebra</RootNamespace>

Example/Example.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<!--
22
CompactCryptoGroupAlgebra - C# implementation of abelian group algebra for experimental cryptography
33
4-
SPDX-FileCopyrightText: 2020-2021 Lukas Prediger <lumip@lumip.de>
4+
SPDX-FileCopyrightText: 2020-2024 Lukas Prediger <lumip@lumip.de>
55
SPDX-License-Identifier: GPL-3.0-or-later
66
SPDX-FileType: SOURCE
77
-->
88
<Project Sdk="Microsoft.NET.Sdk">
99

1010
<PropertyGroup>
1111
<OutputType>Exe</OutputType>
12-
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
12+
<TargetFrameworks>net8</TargetFrameworks>
1313
<AssemblyName>Example</AssemblyName>
1414
<RootNamespace>Example</RootNamespace>
1515
<Nullable>enable</Nullable>

0 commit comments

Comments
 (0)