Skip to content

Commit 1a8915f

Browse files
authored
Legacy Unit Tests
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent 8cdec37 commit 1a8915f

File tree

1 file changed

+93
-0
lines changed

1 file changed

+93
-0
lines changed
Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>disable</Nullable>
7+
8+
<IsPackable>false</IsPackable>
9+
<IsTestProject>true</IsTestProject>
10+
<ErrorReport>prompt</ErrorReport>
11+
<Platforms>AnyCPU;ARM32;ARM64;x64;x86</Platforms>
12+
<SignAssembly>True</SignAssembly>
13+
<DelaySign>True</DelaySign>
14+
<AssemblyOriginatorKeyFile>..\HashifyNET.publickey</AssemblyOriginatorKeyFile>
15+
</PropertyGroup>
16+
17+
<ItemGroup>
18+
<AdditionalFiles Include="..\.editorconfig" Link=".editorconfig" />
19+
</ItemGroup>
20+
21+
<ItemGroup>
22+
<None Include="..\LICENSE" Link="LICENSE">
23+
<PackagePath>\</PackagePath>
24+
<Pack>True</Pack>
25+
</None>
26+
</ItemGroup>
27+
28+
<ItemGroup>
29+
<PackageReference Include="coverlet.collector" Version="6.0.4">
30+
<PrivateAssets>all</PrivateAssets>
31+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
32+
</PackageReference>
33+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
34+
<PackageReference Include="Moq" Version="4.20.72" />
35+
<PackageReference Include="morelinq" Version="4.4.0" />
36+
<PackageReference Include="xunit" Version="2.9.3" />
37+
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.4">
38+
<PrivateAssets>all</PrivateAssets>
39+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
40+
</PackageReference>
41+
</ItemGroup>
42+
43+
<ItemGroup>
44+
<ProjectReference Include="..\HashifyNet\HashifyNet.csproj">
45+
<Properties>TargetFramework=netstandard2.0</Properties>
46+
</ProjectReference>
47+
</ItemGroup>
48+
49+
<ItemGroup>
50+
<Using Include="Xunit" />
51+
</ItemGroup>
52+
53+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0|AnyCPU'">
54+
<DefineConstants>$(DefineConstants);LEGACY</DefineConstants>
55+
</PropertyGroup>
56+
57+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0|ARM32'">
58+
<DefineConstants>$(DefineConstants);LEGACY</DefineConstants>
59+
</PropertyGroup>
60+
61+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0|ARM64'">
62+
<DefineConstants>$(DefineConstants);LEGACY</DefineConstants>
63+
</PropertyGroup>
64+
65+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0|x64'">
66+
<DefineConstants>$(DefineConstants);LEGACY</DefineConstants>
67+
</PropertyGroup>
68+
69+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0|x86'">
70+
<DefineConstants>$(DefineConstants);LEGACY</DefineConstants>
71+
</PropertyGroup>
72+
73+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0|AnyCPU'">
74+
<DefineConstants>$(DefineConstants);LEGACY</DefineConstants>
75+
</PropertyGroup>
76+
77+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0|ARM32'">
78+
<DefineConstants>$(DefineConstants);LEGACY</DefineConstants>
79+
</PropertyGroup>
80+
81+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0|ARM64'">
82+
<DefineConstants>$(DefineConstants);LEGACY</DefineConstants>
83+
</PropertyGroup>
84+
85+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0|x64'">
86+
<DefineConstants>$(DefineConstants);LEGACY</DefineConstants>
87+
</PropertyGroup>
88+
89+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0|x86'">
90+
<DefineConstants>$(DefineConstants);LEGACY</DefineConstants>
91+
</PropertyGroup>
92+
93+
</Project>

0 commit comments

Comments
 (0)