Skip to content

Commit

Permalink
Clean up for build merge. Need global.json to not roll on major versions
Browse files Browse the repository at this point in the history
  • Loading branch information
adamhathcock committed Jun 3, 2024
1 parent a705a5e commit c8da080
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 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>
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"sdk": {
"version": "7.0.0",
"rollForward": "latestMajor",
"rollForward": "latestMinor",
"allowPrerelease": false
}
}

0 comments on commit c8da080

Please sign in to comment.