Skip to content

Commit

Permalink
debugger (Azure#8)
Browse files Browse the repository at this point in the history
* debugger

* modeler

* cleanup
  • Loading branch information
olydis committed Sep 1, 2017
1 parent 9ccaaf1 commit 9cb1802
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion .gulp/common.iced
Expand Up @@ -407,7 +407,6 @@ Import
github_apikey: argv.github_apikey or process.env.GITHUB_APIKEY or null
nuget_apikey: argv.nuget_apikey or process.env.NUGET_APIKEY or null
npm_apikey: argv.npm_apikey or process.env.NPM_APIKEY or null
autorest_home: process.env["autorest.home"]
today: moment().format('YYYYMMDD')
now: moment().format('YYYYMMDD-HHmm')
force: argv.force or false
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -17,7 +17,7 @@ contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additio

``` yaml
use-extension:
"@microsoft.azure/autorest.modeler": "1.9.5"
"@microsoft.azure/autorest.modeler": "1.9.6"

pipeline:
java/modeler:
Expand Down
4 changes: 2 additions & 2 deletions src/Program.cs
Expand Up @@ -31,7 +31,7 @@ public static int Main(string[] args)
{
var connection = new Connection(Console.OpenStandardOutput(), Console.OpenStandardInput());
connection.Dispatch<IEnumerable<string>>("GetPluginNames", async () => new []{ "java" });
connection.Dispatch<string, string, bool>("Process", (plugin, sessionId) => new Program(connection, sessionId).Process());
connection.Dispatch<string, string, bool>("Process", (plugin, sessionId) => new Program(connection, plugin, sessionId).Process());
connection.DispatchNotification("Shutdown", connection.Stop);

// wait for something to do.
Expand All @@ -45,7 +45,7 @@ public static int Main(string[] args)
return 1;
}

public Program(Connection connection, string sessionId) : base(connection, sessionId) { }
public Program(Connection connection, string plugin, string sessionId) : base(connection, plugin, sessionId) { }

private T GetXmsCodeGenSetting<T>(CodeModel codeModel, string name)
{
Expand Down
2 changes: 1 addition & 1 deletion src/autorest.java.csproj
Expand Up @@ -61,7 +61,7 @@
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
<PackageReference Include="YamlDotNet.Signed" Version="4.2.1" />
<PackageReference Include="autorest.common" Version="2.1.17" />
<PackageReference Include="autorest.common" Version="2.2.18" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 9cb1802

Please sign in to comment.