Skip to content
This repository has been archived by the owner on Jan 4, 2023. It is now read-only.

Commit

Permalink
Adding a new Roslyn Runner example.
Browse files Browse the repository at this point in the history
  • Loading branch information
jessefreeman committed Mar 21, 2021
1 parent 4d08282 commit 3753953
Show file tree
Hide file tree
Showing 11 changed files with 688 additions and 18 deletions.
6 changes: 6 additions & 0 deletions PixelVision8.sln
Expand Up @@ -8,6 +8,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PixelVision8.CSharpRunner",
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PixelVision8.LuaRunner", "Projects\LuaRunner\PixelVision8.LuaRunner.csproj", "{3110A80A-C768-4075-B92B-46300A60A0B9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PixelVision8.RoslynRunner", "Projects\RoslynRunner\PixelVision8.RoslynRunner.csproj", "{F8BF76F8-6C53-435D-8CF8-C1AFDFA57226}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -30,5 +32,9 @@ Global
{3110A80A-C768-4075-B92B-46300A60A0B9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3110A80A-C768-4075-B92B-46300A60A0B9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3110A80A-C768-4075-B92B-46300A60A0B9}.Release|Any CPU.Build.0 = Release|Any CPU
{F8BF76F8-6C53-435D-8CF8-C1AFDFA57226}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F8BF76F8-6C53-435D-8CF8-C1AFDFA57226}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F8BF76F8-6C53-435D-8CF8-C1AFDFA57226}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F8BF76F8-6C53-435D-8CF8-C1AFDFA57226}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
19 changes: 9 additions & 10 deletions Projects/CSharpRunner/PixelVision8.CSharpRunner.csproj
Expand Up @@ -14,14 +14,14 @@
</PropertyGroup>

<PropertyGroup>
<Product>Pixel Vision 8 Lite</Product>
<Product>Pixel Vision 8 CSharp Runner</Product>
<ApplicationIcon>Icon.ico</ApplicationIcon>
<AssemblyName>Pixel Vision 8 Lite</AssemblyName>
<RootNamespace>com.pixelvision8.lite</RootNamespace>
<AssemblyName>CSharp Runner</AssemblyName>
<RootNamespace>com.pixelvision8.csharp</RootNamespace>
<Version>0.0.0</Version>
<PackageId>Pixel Vision 8 Lite</PackageId>
<PackageId>CSharp Runner</PackageId>
<PackageIcon>Icon.png</PackageIcon>
<Company>Pixel Vision 8 Lite</Company>
<Company>Pixel Vision 8</Company>
<Copyright>Jesse Freeman 2020</Copyright>
</PropertyGroup>

Expand All @@ -37,10 +37,9 @@

<!-- Load the correct project -->
<ItemGroup>
<Compile Include="../../Disks/APIExamples/$(ApiExample)/code.cs">
<Link>code.cs</Link>
<Compile Include="../../Disks/APIExamples/$(ApiExample)/**/*.cs">
<Link>SDK/Game/%(Filename)%(Extension)</Link>
</Compile>

<Compile Include="../../SDK/Player/PixelVision.cs">
<Link>SDK/Player/PixelVision.cs</Link>
</Compile>
Expand All @@ -66,8 +65,8 @@
<Link>Content/%(RecursiveDir)%(Filename)%(Extension)</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Remove="../../Disks/APIExamples/$(ApiExample)/code.lua" />
<Content Remove="../../Disks/APIExamples/$(ApiExample)/code.cs" />
<Content Remove="../../Disks/APIExamples/$(ApiExample)/**/*.lua" />
<Content Remove="../../Disks/APIExamples/$(ApiExample)/**/*.cs" />
<Content Remove="**/saves.json" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion Projects/LuaRunner/PixelVision8.LuaRunner.csproj
Expand Up @@ -64,7 +64,7 @@
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>

<Content Remove="../../Disks/APIExamples/$(ApiExample)/code.cs" />
<Content Remove="../../Disks/APIExamples/$(ApiExample)/**/*.cs" />
<Content Remove="**/saves.json" />
</ItemGroup>

Expand Down
Binary file added Projects/RoslynRunner/Icon.bmp
Binary file not shown.
Binary file added Projects/RoslynRunner/Icon.icns
Binary file not shown.
Binary file added Projects/RoslynRunner/Icon.ico
Binary file not shown.

0 comments on commit 3753953

Please sign in to comment.