chore(scaffold): initialize git repo and monorepo with .NET solution

This commit is contained in:
Sisyphus Executor
2026-03-03 14:02:37 +01:00
commit c7dd3299d7
26 changed files with 3063 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
namespace WorkClub.Application;
public class Class1
{
}

View File

@@ -0,0 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\WorkClub.Domain\WorkClub.Domain.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Finbuckle.MultiTenant" Version="8.2.0" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
</ItemGroup>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>