Move shared files to shared folder

This commit is contained in:
2025-08-01 15:38:48 +02:00
parent 786728d632
commit 8121d3191e
9 changed files with 32 additions and 10 deletions
+1 -1
View File
@@ -20,7 +20,7 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\WpfExtended\WpfExtended.csproj" />
<ProjectReference Include="..\WpfExtended.Shared\WpfExtended.Shared.csproj" />
</ItemGroup>
</Project>
@@ -0,0 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>WpfExtended</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CorrelationVector" Version="1.0.42" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.7" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.7" />
<PackageReference Include="Slim" Version="1.11.2" />
<PackageReference Include="Slim.Integration" Version="1.0.4" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
<PackageReference Include="SystemExtensions.NetStandard" Version="1.6.12" />
<PackageReference Include="SystemExtensions.NetStandard.DependencyInjection" Version="1.6.9" />
</ItemGroup>
</Project>
+6
View File
@@ -17,6 +17,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
.github\workflows\ci.yaml = .github\workflows\ci.yaml
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfExtended.Shared", "WpfExtended.Shared\WpfExtended.Shared.csproj", "{024E4EF3-535E-4371-B2E6-AFBA9812F880}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -39,6 +41,10 @@ Global
{F9BEE9F3-E1AC-448D-AA5F-7C7AA67CA683}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F9BEE9F3-E1AC-448D-AA5F-7C7AA67CA683}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F9BEE9F3-E1AC-448D-AA5F-7C7AA67CA683}.Release|Any CPU.Build.0 = Release|Any CPU
{024E4EF3-535E-4371-B2E6-AFBA9812F880}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{024E4EF3-535E-4371-B2E6-AFBA9812F880}.Debug|Any CPU.Build.0 = Debug|Any CPU
{024E4EF3-535E-4371-B2E6-AFBA9812F880}.Release|Any CPU.ActiveCfg = Release|Any CPU
{024E4EF3-535E-4371-B2E6-AFBA9812F880}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
+2 -9
View File
@@ -82,15 +82,8 @@ http://www.java2s.com/Open-Source/CSharp_Free_Code/Windows_Presentation_Foundati
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CorrelationVector" Version="1.0.42" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.7" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.7" />
<PackageReference Include="Slim" Version="1.11.2" />
<PackageReference Include="Slim.Integration" Version="1.0.4" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
<PackageReference Include="SystemExtensions.NetStandard" Version="1.6.12" />
<PackageReference Include="SystemExtensions.NetStandard.DependencyInjection" Version="1.6.9" />
<ProjectReference Include="..\WpfExtended.Shared\WpfExtended.Shared.csproj" />
</ItemGroup>
<Import Project="ShaderCompiler.target" />
</Project>