Skip to content

Commit

Permalink
Remove commented out code
Browse files Browse the repository at this point in the history
  • Loading branch information
dellis1972 committed Apr 15, 2024
1 parent 0e4ea14 commit 63a76a9
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions build/BuildToolsTasks/BuildReferenceAssembliesTasks.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,7 @@ namespace BuildScripts;
[IsDependentOn(typeof(BuildDesktopGLTask))]
public sealed class BuildReferenceAssembliesTasks : FrostingTask<BuildContext>
{
public override bool ShouldRun(BuildContext context) => context.IsToolInstalled("jetbrains.refasmer.clitool");
public override void Run(BuildContext context) {
// generate a reference assembly for DesktopGL and Pipelines
// context.StartProcess (
// "dotnet",
// new ProcessSettings()
// {
// Arguments = $"refasmer -v --public -O artifacts/MonoGame.Framework.Ref -c artifacts/MonoGame.Framework/DesktopGL/{context.DotNetPackSettings.Configuration}/MonoGame.Framework.dll",
// RedirectStandardOutput = true
// },
// out IEnumerable<string> processOutput
// );
// context.StartProcess (
// "dotnet",
// new ProcessSettings()
// {
// Arguments = $"refasmer -v --public -O artifacts/MonoGame.Framework.Content.Pipeline.Ref -c artifacts/MonoGame.Framework.Content.Pipeline/{context.DotNetPackSettings.Configuration}/MonoGame.Framework.Content.Pipeline.dll",
// RedirectStandardOutput = true
// },
// out processOutput
// );
context.DotNetPack(context.GetProjectPath(ProjectType.Tools, "MonoGame.Framework.Ref"), context.DotNetPackSettings);
context.DotNetPack(context.GetProjectPath(ProjectType.Tools, "MonoGame.Framework.Content.Pipeline.Ref"), context.DotNetPackSettings);
}
Expand Down

0 comments on commit 63a76a9

Please sign in to comment.