Skip to content

Commit 798fc6e

Browse files
Tyler HartwigTyler Hartwig
Tyler Hartwig
authored and
Tyler Hartwig
committed
Create Shared Project for GL code
1 parent 0ce6cf9 commit 798fc6e

File tree

4 files changed

+39
-0
lines changed

4 files changed

+39
-0
lines changed

SwarmSharp.Shared/MyClass.cs

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using System;
2+
3+
namespace SwarmSharp.Shared
4+
{
5+
public class MyClass
6+
{
7+
public MyClass ()
8+
{
9+
}
10+
}
11+
}
12+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
5+
<HasSharedItems>true</HasSharedItems>
6+
<SharedGUID>{DACF2EF3-7BC5-4E5F-A762-3E715FB3049F}</SharedGUID>
7+
</PropertyGroup>
8+
<PropertyGroup Label="Configuration">
9+
<Import_RootNamespace>SwarmSharp.Shared</Import_RootNamespace>
10+
</PropertyGroup>
11+
<ItemGroup>
12+
<Compile Include="$(MSBuildThisFileDirectory)MyClass.cs" />
13+
</ItemGroup>
14+
</Project>
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<ProjectGuid>{DACF2EF3-7BC5-4E5F-A762-3E715FB3049F}</ProjectGuid>
5+
</PropertyGroup>
6+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
7+
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\CodeSharing\Microsoft.CodeSharing.Common.Default.props" />
8+
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\CodeSharing\Microsoft.CodeSharing.Common.props" />
9+
<Import Project="SwarmSharp.Shared.projitems" Label="Shared" />
10+
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\CodeSharing\Microsoft.CodeSharing.CSharp.targets" />
11+
</Project>

SwarmSharp.sln

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SwarmSharp.iOS", "iOS\Swarm
77
EndProject
88
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SwarmSharp.Droid", "Droid\SwarmSharp.Droid.csproj", "{E5FD262D-8ECF-4A23-B50F-3766E66A0BE9}"
99
EndProject
10+
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "SwarmSharp.Shared", "SwarmSharp.Shared\SwarmSharp.Shared.shproj", "{DACF2EF3-7BC5-4E5F-A762-3E715FB3049F}"
11+
EndProject
1012
Global
1113
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1214
Debug|Any CPU = Debug|Any CPU

0 commit comments

Comments
 (0)