Add new lib.

This commit is contained in:
ElEgEv 2023-09-12 10:37:31 +04:00
parent 486544d0a5
commit a70cfd1d18
2 changed files with 15 additions and 0 deletions

View File

@ -5,6 +5,8 @@ VisualStudioVersion = 17.6.33815.320
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VisualComponents", "VisualComponents\VisualComponents.csproj", "{E5333284-B1A3-4A29-AFFB-5DB3692C036B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VisualComponentsLib", "VisualComponentsLib\VisualComponentsLib.csproj", "{03CEC81D-1205-4404-B971-505D01F8BD6B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -15,6 +17,10 @@ Global
{E5333284-B1A3-4A29-AFFB-5DB3692C036B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E5333284-B1A3-4A29-AFFB-5DB3692C036B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E5333284-B1A3-4A29-AFFB-5DB3692C036B}.Release|Any CPU.Build.0 = Release|Any CPU
{03CEC81D-1205-4404-B971-505D01F8BD6B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{03CEC81D-1205-4404-B971-505D01F8BD6B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{03CEC81D-1205-4404-B971-505D01F8BD6B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{03CEC81D-1205-4404-B971-505D01F8BD6B}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

View File

@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>