Browse Source

Minor code cleanup to use interpolated string formatting.

pull/969/head
Joao Matos 8 years ago
parent
commit
b395d21e63
  1. 2
      src/Generator.Tests/GeneratorTest.cs

2
src/Generator.Tests/GeneratorTest.cs

@ -29,7 +29,7 @@ namespace CppSharp.Utils @@ -29,7 +29,7 @@ namespace CppSharp.Utils
options.OutputDir = Path.Combine(GetOutputDirectory(), "gen", name);
options.Quiet = true;
var testModule = options.AddModule(name);
testModule.SharedLibraryName = name + ".Native";
testModule.SharedLibraryName = $"{name}.Native";
Diagnostics.Message("");
Diagnostics.Message("Generating bindings for {0} ({1})",

Loading…
Cancel
Save