Move viewmodels to separate library.

This commit is contained in:
2025-11-13 15:07:20 +00:00
parent e9e3ef2ab0
commit 268c8fab07
3 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Marechai.Database\Marechai.Database.csproj" />
</ItemGroup>
</Project>

View File

@@ -15,6 +15,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Marechai.Server", "Marechai.Server\Marechai.Server.csproj", "{1371F202-4316-4FA4-93A2-8FF0FC136A33}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Marechai.Data", "Marechai.Data\Marechai.Data.csproj", "{C5EF1ED0-8227-4359-8233-DD06CAEAD9F5}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -33,6 +35,10 @@ Global
{1371F202-4316-4FA4-93A2-8FF0FC136A33}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1371F202-4316-4FA4-93A2-8FF0FC136A33}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1371F202-4316-4FA4-93A2-8FF0FC136A33}.Release|Any CPU.Build.0 = Release|Any CPU
{C5EF1ED0-8227-4359-8233-DD06CAEAD9F5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C5EF1ED0-8227-4359-8233-DD06CAEAD9F5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C5EF1ED0-8227-4359-8233-DD06CAEAD9F5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C5EF1ED0-8227-4359-8233-DD06CAEAD9F5}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

View File

@@ -32,6 +32,7 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Marechai.Database\Marechai.Database.csproj"/>
<ProjectReference Include="..\Marechai.Data\Marechai.Data.csproj" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resources\**\*.es.resx"/>