chore: phase 1 — add Core, Abstractions, App, Tests projects
This commit is contained in:
parent
84c76ba6aa
commit
caf57cca3e
9 changed files with 97 additions and 0 deletions
25
tests/AcDream.Core.Tests/AcDream.Core.Tests.csproj
Normal file
25
tests/AcDream.Core.Tests/AcDream.Core.Tests.csproj
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net10.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<IsPackable>false</IsPackable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="coverlet.collector" Version="6.0.4" />
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
|
||||
<PackageReference Include="xunit" Version="2.9.3" />
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.4" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Using Include="Xunit" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\src\AcDream.Core\AcDream.Core.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
11
tests/AcDream.Core.Tests/SmokeTest.cs
Normal file
11
tests/AcDream.Core.Tests/SmokeTest.cs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
// tests/AcDream.Core.Tests/SmokeTest.cs
|
||||
namespace AcDream.Core.Tests;
|
||||
|
||||
public class SmokeTest
|
||||
{
|
||||
[Fact]
|
||||
public void TestProject_IsWired()
|
||||
{
|
||||
Assert.True(true);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue