Skip to content
This repository has been archived by the owner on Apr 30, 2020. It is now read-only.

Commit

Permalink
Changes for VS2017
Browse files Browse the repository at this point in the history
  • Loading branch information
geaz committed Mar 25, 2017
1 parent 215bc06 commit 0b7b662
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 31 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
Version 1.2.1
Version 1.2.2

- Updated nugets for VS2017 support

Version 1.2.1

- Some minor bug fixes

Expand Down
4 changes: 2 additions & 2 deletions build.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
call nuget.exe restore src

set msBuildDir="C:\Program Files (x86)\MSBuild\14.0\Bin"
call %msBuildDir%\msbuild "msbuild.config" /p:Configuration=Build
set msBuildDir="C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\MSBuild\15.0\Bin"
call %msBuildDir%\msbuild "msbuild.config"
30 changes: 3 additions & 27 deletions msbuild.config
Original file line number Diff line number Diff line change
Expand Up @@ -22,33 +22,9 @@
src/Shells/SharpDox.Console/bin/Release/SharpDox.Console.exe;
src/Shells/SharpDox.Console/bin/Release/SharpDox.Console.exe.config"/>

<LibraryFiles Include="src/Core/SharpDox.Core/bin/Release/Autofac.dll;
src/Core/SharpDox.Core/bin/Release/SharpDox.Build.dll;
src/Core/SharpDox.Core/bin/Release/SharpDox.Build.Roslyn.dll;
src/Core/SharpDox.Core/bin/Release/SharpDox.Model.dll;
src/Core/SharpDox.Core/bin/Release/SharpDox.Sdk.dll;
src/Core/SharpDox.Core/bin/Release/SharpDox.Core.dll;
src/Libraries/SharpDox.UML/bin/Release/SharpDox.UML.dll;
src/Shells/SharpDox.GUI/bin/Release/NLog.dll;
src/Shells/SharpDox.GUI/bin/Release/System.Reflection.Metadata.dll;
src/Shells/SharpDox.GUI/bin/Release/System.Composition.TypedParts.dll;
src/Shells/SharpDox.GUI/bin/Release/System.Composition.Hosting.dll;
src/Shells/SharpDox.GUI/bin/Release/System.Composition.Runtime.dll;
src/Shells/SharpDox.GUI/bin/Release/System.Composition.Convention.dll;
src/Shells/SharpDox.GUI/bin/Release/System.Composition.AttributedModel.dll;
src/Shells/SharpDox.GUI/bin/Release/System.Collections.Immutable.dll;
src/Shells/SharpDox.GUI/bin/Release/Microsoft.Build.dll;
src/Shells/SharpDox.GUI/bin/Release/Microsoft.Build.Engine.dll;
src/Shells/SharpDox.GUI/bin/Release/Microsoft.Build.Framework.dll;
src/Shells/SharpDox.GUI/bin/Release/Microsoft.Build.Tasks.Core.dll;
src/Shells/SharpDox.GUI/bin/Release/Microsoft.Build.Utilities.Core.dll;
src/Shells/SharpDox.GUI/bin/Release/Microsoft.CodeAnalysis.dll;
src/Shells/SharpDox.GUI/bin/Release/Microsoft.CodeAnalysis.CSharp.dll;
src/Shells/SharpDox.GUI/bin/Release/Microsoft.CodeAnalysis.CSharp.Workspaces.dll;
src/Shells/SharpDox.GUI/bin/Release/Microsoft.CodeAnalysis.VisualBasic.dll;
src/Shells/SharpDox.GUI/bin/Release/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll;
src/Shells/SharpDox.GUI/bin/Release/Microsoft.CodeAnalysis.Workspaces.dll;
src/Shells/SharpDox.GUI/bin/Release/Microsoft.CodeAnalysis.Workspaces.Desktop.dll"/>
<LibraryFiles Include="src/Core/SharpDox.Core/bin/Release/*.dll;
src/Libraries/SharpDox.UML/bin/Release/SharpDox.*.dll;
src/Shells/SharpDox.GUI/bin/Release/*.dll"/>

<AdditionalFiles Include="CHANGELOG.txt"/>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public ConfigGridControl(IConfigController configController, IExporter[] allExpo

private void InitializeGrid()
{
foreach (var configSection in _configController.GetAllConfigSections().Reverse())
foreach (var configSection in _configController.GetAllConfigSections())
{
AddSection(configSection);
}
Expand Down

0 comments on commit 0b7b662

Please sign in to comment.