Initial
This commit is contained in:
commit
7fee5834ff
51 changed files with 1722 additions and 0 deletions
24
test/Interlinked.Test/Interlinked.Test.csproj
Normal file
24
test/Interlinked.Test/Interlinked.Test.csproj
Normal file
|
@ -0,0 +1,24 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
|
||||
<IsPackable>false</IsPackable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
|
||||
<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="3.1.2">
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
</PackageReference>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
10
test/Interlinked.Test/UnitTest1.cs
Normal file
10
test/Interlinked.Test/UnitTest1.cs
Normal file
|
@ -0,0 +1,10 @@
|
|||
namespace Interlinked.Test;
|
||||
|
||||
public class UnitTest1
|
||||
{
|
||||
[Fact]
|
||||
public void Test1()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
1
test/Interlinked.Test/Usings.cs
Normal file
1
test/Interlinked.Test/Usings.cs
Normal file
|
@ -0,0 +1 @@
|
|||
global using Xunit;
|
Loading…
Add table
Add a link
Reference in a new issue