Skip to content

Commit e267ba8

Browse files
authored
Fixing schema verification environment (#83)
* Attempt at tool fixing * Updated build packages.
1 parent adfd994 commit e267ba8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

build/Build.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ class Build : NukeBuild
1515
[Parameter("Configuration to build - Default is 'Debug' (local) or 'Release' (server)")]
1616
readonly Configuration Configuration = IsLocalBuild ? Configuration.Debug : Configuration.Release;
1717

18-
[PackageExecutable("ids-tool.CommandLine", "tools/net5.0/ids-tool.dll")] Tool BcfTool;
19-
private string BcfToolPath => System.IO.Path.GetDirectoryName(ToolPathResolver.GetPackageExecutable("ids-tool.CommandLine", "tools/net5.0/ids-tool.dll"));
18+
[PackageExecutable("ids-tool.CommandLine", "tools/net6.0/ids-tool.dll")] Tool BcfTool;
19+
private string BcfToolPath => System.IO.Path.GetDirectoryName(ToolPathResolver.GetPackageExecutable("ids-tool.CommandLine", "tools/net6.0/ids-tool.dll"));
2020

2121
Target CheckTestCases => _ => _
2222
.Executes(() =>
2323
{
2424
var schemaFile = Path.Combine(
2525
RootDirectory,
26-
"Development/0.6/ids_06.xsd"
26+
"Development/0.9/ids_09.xsd"
2727
);
2828
var inputFolder = Path.Combine(
2929
RootDirectory,
30-
"Development/0.6"
30+
"Development/0.9"
3131
);
3232
var arguments = $"check \"{inputFolder}\" -x \"{schemaFile}\"";
3333
BcfTool(arguments, workingDirectory: BcfToolPath);

build/_build.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="ids-tool.CommandLine" Version="1.0.4" />
15-
<PackageReference Include="Nuke.Common" Version="6.0.3" />
14+
<PackageReference Include="ids-tool.CommandLine" Version="1.0.7" />
15+
<PackageReference Include="Nuke.Common" Version="6.2.1" />
1616
</ItemGroup>
1717

1818
</Project>

0 commit comments

Comments
 (0)