Skip to content

Commit

Permalink
Alpha branch fixes (#3462)
Browse files Browse the repository at this point in the history
* Clean up for build merge.  Need global.json to not roll on major versions

* latestMajor back
  • Loading branch information
adamhathcock authored Jun 3, 2024
1 parent a705a5e commit 53b9055
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Build/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using System.Collections.Generic;
using System.IO;
using System.IO.Compression;
using System.Linq;
using Build;
using GlobExpressions;
using static Bullseye.Targets;
Expand All @@ -18,13 +17,14 @@
const string RESTORE_TOOLS = "restore-tools";
const string BUILD_SERVER_VERSION = "build-server-version";

var arguments = new List<string>();
//need to pass arguments
/*var arguments = new List<string>();
if (args.Length > 1)
{
arguments = args.ToList();
args = new[] { arguments.First() };
arguments = arguments.Skip(1).ToList();
}
//arguments = arguments.Skip(1).ToList();
}*/

Target(
CLEAN,
Expand Down
6 changes: 3 additions & 3 deletions DUI3-DX/Directory.Build.Props
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="PolySharp" Version="1.14.1"/>
<PackageReference Include="Speckle.InterfaceGenerator" Version="0.9.4"/>
<PackageReference Include="PolySharp" Version="1.14.1" PrivateAssets="All"/>
<PackageReference Include="Speckle.InterfaceGenerator" Version="0.9.4" PrivateAssets="All"/>
</ItemGroup>
</Project>
</Project>

0 comments on commit 53b9055

Please sign in to comment.