Adding projects and structure updates

This commit is contained in:
2026-07-05 15:35:40 -04:00
parent 173109d7ca
commit 350aa87d76
11 changed files with 52 additions and 3 deletions
+22
View File
@@ -0,0 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<RootNamespace>Docs</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Content Include="..\..\op.docs\**\*">
<Link>docs\%(RecursiveDir)%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
<Visible>true</Visible>
</Content>
</ItemGroup>
<ItemGroup>
<Content Include="..\..\op.tasks\**\*">
<Link>tasks\%(RecursiveDir)%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
<Visible>true</Visible>
</Content>
</ItemGroup>
</Project>
+11
View File
@@ -2,6 +2,10 @@
Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Build", "Build\Build.csproj", "{57A2E434-08CD-47BF-9F3D-E1BF74C34EE7}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Markdown", "Markdown\Markdown.csproj", "{07B07767-7E8B-4874-B012-2572E7EED01E}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "md", "md", "{1B72AEDE-AB8C-426B-A5A8-56FDC45B5E54}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -12,5 +16,12 @@ Global
{57A2E434-08CD-47BF-9F3D-E1BF74C34EE7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{57A2E434-08CD-47BF-9F3D-E1BF74C34EE7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{57A2E434-08CD-47BF-9F3D-E1BF74C34EE7}.Release|Any CPU.Build.0 = Release|Any CPU
{07B07767-7E8B-4874-B012-2572E7EED01E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{07B07767-7E8B-4874-B012-2572E7EED01E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{07B07767-7E8B-4874-B012-2572E7EED01E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{07B07767-7E8B-4874-B012-2572E7EED01E}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{07B07767-7E8B-4874-B012-2572E7EED01E} = {1B72AEDE-AB8C-426B-A5A8-56FDC45B5E54}
EndGlobalSection
EndGlobal