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

Commit 0b7b662

Browse files
committed
Changes for VS2017
1 parent 215bc06 commit 0b7b662

File tree

4 files changed

+11
-31
lines changed

4 files changed

+11
-31
lines changed

Diff for: CHANGELOG.txt

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
Version 1.2.1
1+
Version 1.2.2
2+
3+
- Updated nugets for VS2017 support
4+
5+
Version 1.2.1
26

37
- Some minor bug fixes
48

Diff for: build.bat

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
call nuget.exe restore src
22

3-
set msBuildDir="C:\Program Files (x86)\MSBuild\14.0\Bin"
4-
call %msBuildDir%\msbuild "msbuild.config" /p:Configuration=Build
3+
set msBuildDir="C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\MSBuild\15.0\Bin"
4+
call %msBuildDir%\msbuild "msbuild.config"

Diff for: msbuild.config

+3-27
Original file line numberDiff line numberDiff line change
@@ -22,33 +22,9 @@
2222
src/Shells/SharpDox.Console/bin/Release/SharpDox.Console.exe;
2323
src/Shells/SharpDox.Console/bin/Release/SharpDox.Console.exe.config"/>
2424

25-
<LibraryFiles Include="src/Core/SharpDox.Core/bin/Release/Autofac.dll;
26-
src/Core/SharpDox.Core/bin/Release/SharpDox.Build.dll;
27-
src/Core/SharpDox.Core/bin/Release/SharpDox.Build.Roslyn.dll;
28-
src/Core/SharpDox.Core/bin/Release/SharpDox.Model.dll;
29-
src/Core/SharpDox.Core/bin/Release/SharpDox.Sdk.dll;
30-
src/Core/SharpDox.Core/bin/Release/SharpDox.Core.dll;
31-
src/Libraries/SharpDox.UML/bin/Release/SharpDox.UML.dll;
32-
src/Shells/SharpDox.GUI/bin/Release/NLog.dll;
33-
src/Shells/SharpDox.GUI/bin/Release/System.Reflection.Metadata.dll;
34-
src/Shells/SharpDox.GUI/bin/Release/System.Composition.TypedParts.dll;
35-
src/Shells/SharpDox.GUI/bin/Release/System.Composition.Hosting.dll;
36-
src/Shells/SharpDox.GUI/bin/Release/System.Composition.Runtime.dll;
37-
src/Shells/SharpDox.GUI/bin/Release/System.Composition.Convention.dll;
38-
src/Shells/SharpDox.GUI/bin/Release/System.Composition.AttributedModel.dll;
39-
src/Shells/SharpDox.GUI/bin/Release/System.Collections.Immutable.dll;
40-
src/Shells/SharpDox.GUI/bin/Release/Microsoft.Build.dll;
41-
src/Shells/SharpDox.GUI/bin/Release/Microsoft.Build.Engine.dll;
42-
src/Shells/SharpDox.GUI/bin/Release/Microsoft.Build.Framework.dll;
43-
src/Shells/SharpDox.GUI/bin/Release/Microsoft.Build.Tasks.Core.dll;
44-
src/Shells/SharpDox.GUI/bin/Release/Microsoft.Build.Utilities.Core.dll;
45-
src/Shells/SharpDox.GUI/bin/Release/Microsoft.CodeAnalysis.dll;
46-
src/Shells/SharpDox.GUI/bin/Release/Microsoft.CodeAnalysis.CSharp.dll;
47-
src/Shells/SharpDox.GUI/bin/Release/Microsoft.CodeAnalysis.CSharp.Workspaces.dll;
48-
src/Shells/SharpDox.GUI/bin/Release/Microsoft.CodeAnalysis.VisualBasic.dll;
49-
src/Shells/SharpDox.GUI/bin/Release/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll;
50-
src/Shells/SharpDox.GUI/bin/Release/Microsoft.CodeAnalysis.Workspaces.dll;
51-
src/Shells/SharpDox.GUI/bin/Release/Microsoft.CodeAnalysis.Workspaces.Desktop.dll"/>
25+
<LibraryFiles Include="src/Core/SharpDox.Core/bin/Release/*.dll;
26+
src/Libraries/SharpDox.UML/bin/Release/SharpDox.*.dll;
27+
src/Shells/SharpDox.GUI/bin/Release/*.dll"/>
5228

5329
<AdditionalFiles Include="CHANGELOG.txt"/>
5430

Diff for: src/Shells/SharpDox.GUI/Controls/ConfigGrid/ConfigGridControl.xaml.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public ConfigGridControl(IConfigController configController, IExporter[] allExpo
2828

2929
private void InitializeGrid()
3030
{
31-
foreach (var configSection in _configController.GetAllConfigSections().Reverse())
31+
foreach (var configSection in _configController.GetAllConfigSections())
3232
{
3333
AddSection(configSection);
3434
}

0 commit comments

Comments
 (0)