Added unit test project for Proculite.Common.
This commit is contained in:
parent
ab909d40bc
commit
41d6153aaa
27
Proculite.Common.Test/Proculite.Common.Test.csproj
Normal file
27
Proculite.Common.Test/Proculite.Common.Test.csproj
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
<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="coverlet.collector" Version="6.0.0" />
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
|
||||
<PackageReference Include="xunit" Version="2.5.3" />
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Using Include="Xunit" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Proculite.Common\Proculite.Common.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
@ -7,6 +7,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Proculite.Common", "Proculi
|
|||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Proculite.Common.Android", "Proculite.Common.Android\Proculite.Common.Android.csproj", "{8266869D-9787-4E0E-82E5-A43655C5CD0F}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Proculite.Common.Test", "Proculite.Common.Test\Proculite.Common.Test.csproj", "{2CD14272-8F9C-4946-9F1A-0E5A8AFBE3D2}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
|
|
@ -24,5 +26,9 @@ Global
|
|||
{8266869D-9787-4E0E-82E5-A43655C5CD0F}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{8266869D-9787-4E0E-82E5-A43655C5CD0F}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{8266869D-9787-4E0E-82E5-A43655C5CD0F}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{2CD14272-8F9C-4946-9F1A-0E5A8AFBE3D2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{2CD14272-8F9C-4946-9F1A-0E5A8AFBE3D2}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{2CD14272-8F9C-4946-9F1A-0E5A8AFBE3D2}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{2CD14272-8F9C-4946-9F1A-0E5A8AFBE3D2}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
|
|
|
|||
Loading…
Reference in a new issue