diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-06-08 10:40:23 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-06-08 10:40:23 -0230 |
commit | 1cfec27783376c071f63b8d2c7d3d644be5aa81c (patch) | |
tree | 3788db76a389738b38edf63b17de7549b975a1ca /vsplugin/src/IceCsharpConfigurationDialog.cs | |
parent | Update depedndencies on add/remove/rename (diff) | |
download | ice-1cfec27783376c071f63b8d2c7d3d644be5aa81c.tar.bz2 ice-1cfec27783376c071f63b8d2c7d3d644be5aa81c.tar.xz ice-1cfec27783376c071f63b8d2c7d3d644be5aa81c.zip |
Remove unused building paramater
Diffstat (limited to 'vsplugin/src/IceCsharpConfigurationDialog.cs')
-rw-r--r-- | vsplugin/src/IceCsharpConfigurationDialog.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vsplugin/src/IceCsharpConfigurationDialog.cs b/vsplugin/src/IceCsharpConfigurationDialog.cs index dd820aeb745..30879f616d2 100644 --- a/vsplugin/src/IceCsharpConfigurationDialog.cs +++ b/vsplugin/src/IceCsharpConfigurationDialog.cs @@ -198,7 +198,7 @@ namespace Ice.VisualStudio Cursor = Cursors.WaitCursor;
Builder builder = Connect.getBuilder();
builder.cleanProject(_project);
- builder.buildCSharpProject(_project, false, true);
+ builder.buildCSharpProject(_project, true);
Cursor = c;
}
Close();
|