File tree Expand file tree Collapse file tree 3 files changed +15
-6
lines changed
CompactCryptoGroupAlgebra.LibCrypto.Tests
CompactCryptoGroupAlgebra.Tests Expand file tree Collapse file tree 3 files changed +15
-6
lines changed Original file line number Diff line number Diff line change 1
1
<!--
2
2
CompactCryptoGroupAlgebra - C# implementation of abelian group algebra for experimental cryptography
3
3
4
- SPDX-FileCopyrightText: 2020-2021 Lukas Prediger <lumip@lumip.de>
4
+ SPDX-FileCopyrightText: 2020-2024 Lukas Prediger <lumip@lumip.de>
5
5
SPDX-License-Identifier: GPL-3.0-or-later WITH GPL-3.0-linking-exception
6
6
SPDX-FileType: SOURCE
7
7
-->
8
8
<Project Sdk =" Microsoft.NET.Sdk" >
9
9
10
10
<PropertyGroup >
11
- <TargetFrameworks >netcoreapp3.1 </TargetFrameworks >
11
+ <TargetFrameworks >net8 </TargetFrameworks >
12
12
<LangVersion >8.0</LangVersion >
13
13
<AssemblyName >CompactCryptoGroupAlgebra.LibCrypto.Tests</AssemblyName >
14
14
<RootNamespace >CompactCryptoGroupAlgebra.LibCrypto</RootNamespace >
@@ -21,6 +21,15 @@ SPDX-FileType: SOURCE
21
21
<Copyright >Copyright © 2021 Lukas Prediger</Copyright >
22
22
</PropertyGroup >
23
23
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
+
24
33
<ItemGroup >
25
34
<PackageReference Include =" Moq" Version =" 4.13.1" />
26
35
<PackageReference Include =" NUnit" Version =" 3.12.0" />
Original file line number Diff line number Diff line change 1
1
<!--
2
2
CompactCryptoGroupAlgebra - C# implementation of abelian group algebra for experimental cryptography
3
3
4
- SPDX-FileCopyrightText: 2020-2021 Lukas Prediger <lumip@lumip.de>
4
+ SPDX-FileCopyrightText: 2020-2024 Lukas Prediger <lumip@lumip.de>
5
5
SPDX-License-Identifier: GPL-3.0-or-later
6
6
SPDX-FileType: SOURCE
7
7
-->
8
8
<Project Sdk =" Microsoft.NET.Sdk" >
9
9
10
10
<PropertyGroup >
11
- <TargetFrameworks >netcoreapp3.1 </TargetFrameworks >
11
+ <TargetFrameworks >net8 </TargetFrameworks >
12
12
<LangVersion >8.0</LangVersion >
13
13
<AssemblyName >CompactCryptoGroupAlgebra.Tests</AssemblyName >
14
14
<RootNamespace >CompactCryptoGroupAlgebra</RootNamespace >
Original file line number Diff line number Diff line change 1
1
<!--
2
2
CompactCryptoGroupAlgebra - C# implementation of abelian group algebra for experimental cryptography
3
3
4
- SPDX-FileCopyrightText: 2020-2021 Lukas Prediger <lumip@lumip.de>
4
+ SPDX-FileCopyrightText: 2020-2024 Lukas Prediger <lumip@lumip.de>
5
5
SPDX-License-Identifier: GPL-3.0-or-later
6
6
SPDX-FileType: SOURCE
7
7
-->
8
8
<Project Sdk =" Microsoft.NET.Sdk" >
9
9
10
10
<PropertyGroup >
11
11
<OutputType >Exe</OutputType >
12
- <TargetFrameworks >netcoreapp3.1 </TargetFrameworks >
12
+ <TargetFrameworks >net8 </TargetFrameworks >
13
13
<AssemblyName >Example</AssemblyName >
14
14
<RootNamespace >Example</RootNamespace >
15
15
<Nullable >enable</Nullable >
You can’t perform that action at this time.
0 commit comments