mirror of
https://onedev.fprog.nl/AioNet
synced 2026-02-13 19:13:41 +01:00
Added project and unit test for reflection related operations.
This commit is contained in:
parent
c18c6533b2
commit
b89b3757eb
7
AioNet.Reflection/AioNet.Reflection.csproj
Normal file
7
AioNet.Reflection/AioNet.Reflection.csproj
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>netstandard2.0</TargetFramework>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
4
AioNet.Reflection/DeepComparison.cs
Normal file
4
AioNet.Reflection/DeepComparison.cs
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
namespace AioNet.Reflection
|
||||||
|
{
|
||||||
|
public class DeepComparison { }
|
||||||
|
}
|
||||||
29
AioNet.ReflectionTest/AioNet.ReflectionTest.csproj
Normal file
29
AioNet.ReflectionTest/AioNet.ReflectionTest.csproj
Normal file
|
|
@ -0,0 +1,29 @@
|
||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
|
||||||
|
<IsPackable>false</IsPackable>
|
||||||
|
<IsTestProject>true</IsTestProject>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.0" />
|
||||||
|
<PackageReference Include="xunit" Version="2.4.2" />
|
||||||
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
|
||||||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
|
<PrivateAssets>all</PrivateAssets>
|
||||||
|
</PackageReference>
|
||||||
|
<PackageReference Include="coverlet.collector" Version="6.0.0">
|
||||||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
|
<PrivateAssets>all</PrivateAssets>
|
||||||
|
</PackageReference>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\AioNet.Reflection\AioNet.Reflection.csproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
1
AioNet.ReflectionTest/GlobalUsings.cs
Normal file
1
AioNet.ReflectionTest/GlobalUsings.cs
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
global using Xunit;
|
||||||
12
AioNet.sln
12
AioNet.sln
|
|
@ -7,6 +7,10 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AioNet.Linq", "AioNet.Linq\
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AioNet.LinqTest", "AioNet.LinqTest\AioNet.LinqTest.csproj", "{30BEA554-220B-4A76-99AC-05E482EE18D9}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AioNet.LinqTest", "AioNet.LinqTest\AioNet.LinqTest.csproj", "{30BEA554-220B-4A76-99AC-05E482EE18D9}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AioNet.Reflection", "AioNet.Reflection\AioNet.Reflection.csproj", "{4E27503E-0780-4ADB-9089-D8EC15C5977B}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AioNet.ReflectionTest", "AioNet.ReflectionTest\AioNet.ReflectionTest.csproj", "{BEC678AE-28D8-46D7-B9D4-A6C65F2EA1D2}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
|
@ -24,5 +28,13 @@ Global
|
||||||
{30BEA554-220B-4A76-99AC-05E482EE18D9}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{30BEA554-220B-4A76-99AC-05E482EE18D9}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{30BEA554-220B-4A76-99AC-05E482EE18D9}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{30BEA554-220B-4A76-99AC-05E482EE18D9}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{30BEA554-220B-4A76-99AC-05E482EE18D9}.Release|Any CPU.Build.0 = Release|Any CPU
|
{30BEA554-220B-4A76-99AC-05E482EE18D9}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{4E27503E-0780-4ADB-9089-D8EC15C5977B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{4E27503E-0780-4ADB-9089-D8EC15C5977B}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{4E27503E-0780-4ADB-9089-D8EC15C5977B}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{4E27503E-0780-4ADB-9089-D8EC15C5977B}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{BEC678AE-28D8-46D7-B9D4-A6C65F2EA1D2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{BEC678AE-28D8-46D7-B9D4-A6C65F2EA1D2}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{BEC678AE-28D8-46D7-B9D4-A6C65F2EA1D2}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{BEC678AE-28D8-46D7-B9D4-A6C65F2EA1D2}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
EndGlobal
|
EndGlobal
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue