-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Started work on reporting syntax version on .dll
Fixed text above search bar.
- Loading branch information
Showing
17 changed files
with
183 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
42 changes: 42 additions & 0 deletions
42
FRBDK/Glue/Glue/VSHelpers/Projects/MonoGameDesktopGlBaseProject.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
using Microsoft.Build.Evaluation; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace FlatRedBall.Glue.VSHelpers.Projects | ||
{ | ||
public abstract class MonoGameDesktopGlBaseProject : VisualStudioProject | ||
{ | ||
public override string ProjectId { get { return "DesktopGl"; } } | ||
public override string PrecompilerDirective { get { return "DESKTOP_GL"; } } | ||
|
||
public override bool AllowContentCompile => false; | ||
|
||
public override string ContentDirectory => "Content/"; | ||
|
||
|
||
public override string FolderName => "DesktopGl"; | ||
|
||
protected override bool NeedToSaveContentProject => false; | ||
|
||
public MonoGameDesktopGlBaseProject(Project project) : base(project) | ||
{ | ||
} | ||
|
||
public override string ProcessInclude(string path) | ||
{ | ||
var returnValue = base.ProcessInclude(path); | ||
|
||
return returnValue.ToLowerInvariant(); | ||
} | ||
|
||
public override string ProcessLink(string path) | ||
{ | ||
var returnValue = base.ProcessLink(path); | ||
// Linux is case-sensitive | ||
return returnValue.ToLowerInvariant(); | ||
} | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
FRBDK/Glue/Glue/VSHelpers/Projects/MonoGameDesktopGlNetCoreProject.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using Microsoft.Build.Evaluation; | ||
|
||
namespace FlatRedBall.Glue.VSHelpers.Projects | ||
{ | ||
public class MonoGameDesktopGlNetCoreProject : MonoGameDesktopGlBaseProject | ||
{ | ||
|
||
const string FlatRedBallDll = "FlatRedBallDesktopGL.dll"; | ||
|
||
public override List<string> LibraryDlls | ||
{ | ||
get | ||
{ | ||
return new List<string> | ||
{ | ||
FlatRedBallDll | ||
}; | ||
} | ||
} | ||
|
||
public override string NeededVisualStudioVersion | ||
{ | ||
get { return "14.0"; } | ||
|
||
} | ||
|
||
public MonoGameDesktopGlNetCoreProject(Project project) : base(project) | ||
{ | ||
} | ||
|
||
|
||
|
||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
FRBDK/Glue/Glue/VSHelpers/Projects/MonoGameDesktopGlNetFrameworkProject.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using Microsoft.Build.Evaluation; | ||
|
||
namespace FlatRedBall.Glue.VSHelpers.Projects | ||
{ | ||
public class MonoGameDesktopGlNetFrameworkProject : MonoGameDesktopGlBaseProject | ||
{ | ||
|
||
const string FlatRedBallDll = "FlatRedBallDesktopGL.dll"; | ||
|
||
public override List<string> LibraryDlls | ||
{ | ||
get | ||
{ | ||
return new List<string> | ||
{ | ||
FlatRedBallDll | ||
}; | ||
} | ||
} | ||
|
||
public override string NeededVisualStudioVersion | ||
{ | ||
get { return "14.0"; } | ||
|
||
} | ||
|
||
public MonoGameDesktopGlNetFrameworkProject(Project project) : base(project) | ||
{ | ||
} | ||
|
||
|
||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.