Skip to content

Commit 3f612b9

Browse files
committed
💾 Feat: Merged from dev=main branch.
2 parents 3fa056e + d54e92f commit 3f612b9

9 files changed

Lines changed: 281 additions & 307 deletions

File tree

‎.github/PULL_REQUEST_TEMPLATE/pull_request_template.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
## What does this MR do?
1+
## What does this PR do?
22

3-
<!-- Briefly describe what this MR is about -->
3+
<!-- Briefly describe what this PR is about -->
44

55
## Related issues
66

‎.gitlab/merge_request_templates/default.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
## What does this MR do?
1+
## What does this PR do?
22

3-
<!-- Briefly describe what this MR is about -->
3+
<!-- Briefly describe what this PR is about -->
44

55
## Related issues
66

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net6.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
8+
<IsPackable>false</IsPackable>
9+
</PropertyGroup>
10+
11+
<ItemGroup>
12+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
13+
<PackageReference Include="MSTest.TestAdapter" Version="3.0.2" />
14+
<PackageReference Include="MSTest.TestFramework" Version="3.0.2" />
15+
<PackageReference Include="coverlet.collector" Version="3.1.2" />
16+
</ItemGroup>
17+
18+
<ItemGroup>
19+
<ProjectReference Include="..\Common.Algorithm.Interop\Common.Algorithm.Interop.csproj" />
20+
</ItemGroup>
21+
22+
</Project>

‎Common.Algorithm.Interop.Test/HashTest.cs‎

Lines changed: 249 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
global using Microsoft.VisualStudio.TestTools.UnitTesting;

‎Common.Algorithm.UnitTest/Common.Algorithm.UnitTest.csproj‎

Lines changed: 0 additions & 31 deletions
This file was deleted.

‎Common.Algorithm.UnitTest/HashTest.cs‎

Lines changed: 0 additions & 257 deletions
This file was deleted.

‎Common.Algorithm.UnitTest/move.debug.sh‎

Lines changed: 0 additions & 10 deletions
This file was deleted.

‎Common.Algorithm.sln‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ VisualStudioVersion = 17.1.32228.430
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Common.Algorithm.Interop", "Common.Algorithm.Interop\Common.Algorithm.Interop.csproj", "{CF6DE7FB-83C2-4F9D-AED8-81BDDFFAE290}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Common.Algorithm.UnitTest", "Common.Algorithm.UnitTest\Common.Algorithm.UnitTest.csproj", "{CA56FF08-4C41-47CA-9FA1-1CAA8DD6C6F7}"
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Common.Algorithm.Interop.Test", "Common.Algorithm.Interop.Test\Common.Algorithm.Interop.Test.csproj", "{8B9C798D-C314-4017-813C-925089B12FD2}"
99
EndProject
1010
Global
1111
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -17,10 +17,10 @@ Global
1717
{CF6DE7FB-83C2-4F9D-AED8-81BDDFFAE290}.Debug|Any CPU.Build.0 = Debug|Any CPU
1818
{CF6DE7FB-83C2-4F9D-AED8-81BDDFFAE290}.Release|Any CPU.ActiveCfg = Release|Any CPU
1919
{CF6DE7FB-83C2-4F9D-AED8-81BDDFFAE290}.Release|Any CPU.Build.0 = Release|Any CPU
20-
{CA56FF08-4C41-47CA-9FA1-1CAA8DD6C6F7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21-
{CA56FF08-4C41-47CA-9FA1-1CAA8DD6C6F7}.Debug|Any CPU.Build.0 = Debug|Any CPU
22-
{CA56FF08-4C41-47CA-9FA1-1CAA8DD6C6F7}.Release|Any CPU.ActiveCfg = Release|Any CPU
23-
{CA56FF08-4C41-47CA-9FA1-1CAA8DD6C6F7}.Release|Any CPU.Build.0 = Release|Any CPU
20+
{8B9C798D-C314-4017-813C-925089B12FD2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21+
{8B9C798D-C314-4017-813C-925089B12FD2}.Debug|Any CPU.Build.0 = Debug|Any CPU
22+
{8B9C798D-C314-4017-813C-925089B12FD2}.Release|Any CPU.ActiveCfg = Release|Any CPU
23+
{8B9C798D-C314-4017-813C-925089B12FD2}.Release|Any CPU.Build.0 = Release|Any CPU
2424
EndGlobalSection
2525
GlobalSection(SolutionProperties) = preSolution
2626
HideSolutionNode = FALSE

0 commit comments

Comments
 (0)