Skip to content

Commit c7d7ca8

Browse files
Merge branch 'develop'
2 parents 78169c2 + c7b7dd6 commit c7d7ca8

File tree

7 files changed

+12
-197
lines changed

7 files changed

+12
-197
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ resharper_align_multiline_expression = true
121121
resharper_align_multiline_binary_expressions_chain = true
122122
resharper_align_multiline_calls_chain = true
123123
resharper_align_multiline_array_and_object_initializer = true
124-
resharper_indent_anonymous_method_block = true
124+
resharper_indent_anonymous_method_block = false
125125
resharper_align_multiline_for_stmt = true
126126
resharper_align_multiple_declaration = true
127127
resharper_align_multline_type_parameter_list = true

DiffLib.Tests/CodeQuality/QaTestBase.cs

-99
This file was deleted.

DiffLib.Tests/CodeQuality/ReferenceTests.cs

-85
This file was deleted.

DiffLib.Tests/DiffLib.Tests.csproj

-2
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,6 @@
6464
<Compile Include="MergeTests.cs" />
6565
<Compile Include="OptionTests.cs" />
6666
<Compile Include="Properties\AssemblyInfo.cs" />
67-
<Compile Include="CodeQuality\QaTestBase.cs" />
68-
<Compile Include="CodeQuality\ReferenceTests.cs" />
6967
<Compile Include="StringSimilarityDiffElementAlignerTests.cs" />
7068
</ItemGroup>
7169
<ItemGroup>

DiffLib.sln

+3-8
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 15
4-
VisualStudioVersion = 15.0.26403.0
4+
VisualStudioVersion = 15.0.26430.16
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DiffLib", "DiffLib\DiffLib.csproj", "{59577DB1-D790-4925-ABB0-9F2B6DC24DFD}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DiffLib", "DiffLib\DiffLib.csproj", "{59577DB1-D790-4925-ABB0-9F2B6DC24DFD}"
77
EndProject
88
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DiffLib.Tests", "DiffLib.Tests\DiffLib.Tests.csproj", "{16F500B7-F4BE-46D4-8443-2E6F653C3508}"
99
EndProject
1010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{37D01333-8058-4DB9-B8D6-855F42914728}"
1111
ProjectSection(SolutionItems) = preProject
12+
.editorconfig = .editorconfig
1213
.gitattributes = .gitattributes
1314
.gitignore = .gitignore
14-
.editorconfig = .editorconfig
1515
DiffLib\DiffLib.nuspec = DiffLib\DiffLib.nuspec
1616
EXAMPLES.md = EXAMPLES.md
1717
LICENSE.md = LICENSE.md
@@ -23,21 +23,16 @@ Global
2323
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2424
Debug|Any CPU = Debug|Any CPU
2525
Release|Any CPU = Release|Any CPU
26-
ReleaseBinaries|Any CPU = ReleaseBinaries|Any CPU
2726
EndGlobalSection
2827
GlobalSection(ProjectConfigurationPlatforms) = postSolution
2928
{59577DB1-D790-4925-ABB0-9F2B6DC24DFD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
3029
{59577DB1-D790-4925-ABB0-9F2B6DC24DFD}.Debug|Any CPU.Build.0 = Debug|Any CPU
3130
{59577DB1-D790-4925-ABB0-9F2B6DC24DFD}.Release|Any CPU.ActiveCfg = Release|Any CPU
3231
{59577DB1-D790-4925-ABB0-9F2B6DC24DFD}.Release|Any CPU.Build.0 = Release|Any CPU
33-
{59577DB1-D790-4925-ABB0-9F2B6DC24DFD}.ReleaseBinaries|Any CPU.ActiveCfg = Release|Any CPU
34-
{59577DB1-D790-4925-ABB0-9F2B6DC24DFD}.ReleaseBinaries|Any CPU.Build.0 = Release|Any CPU
3532
{16F500B7-F4BE-46D4-8443-2E6F653C3508}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
3633
{16F500B7-F4BE-46D4-8443-2E6F653C3508}.Debug|Any CPU.Build.0 = Debug|Any CPU
3734
{16F500B7-F4BE-46D4-8443-2E6F653C3508}.Release|Any CPU.ActiveCfg = Release|Any CPU
3835
{16F500B7-F4BE-46D4-8443-2E6F653C3508}.Release|Any CPU.Build.0 = Release|Any CPU
39-
{16F500B7-F4BE-46D4-8443-2E6F653C3508}.ReleaseBinaries|Any CPU.ActiveCfg = ReleaseBinaries|Any CPU
40-
{16F500B7-F4BE-46D4-8443-2E6F653C3508}.ReleaseBinaries|Any CPU.Build.0 = ReleaseBinaries|Any CPU
4136
EndGlobalSection
4237
GlobalSection(SolutionProperties) = preSolution
4338
HideSolutionNode = FALSE

DiffLib/DiffLib.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard1.0</TargetFramework>
4+
<TargetFrameworks>netstandard1.0;net35;net45;net46;net47</TargetFrameworks>
55
<Description>A Diff implementation for .NET Standard 1.0 and up, written in C#.</Description>
66
<Copyright>Copyright (C) Lasse V. Karlsen 2015-2017, All rights reserved</Copyright>
77
<PackageProjectUrl>https://github.com/lassevk/DiffLib</PackageProjectUrl>

release.bat

+7-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,13 @@ if errorlevel 1 goto error
4141
if errorlevel 1 goto error
4242

4343
set VERSION=%year%.%month%.%day%.%tm%
44-
"%MSBUILD_CONSOLE%" "%PROJECT%.sln" /target:Clean,Rebuild /p:Configuration=%CONFIGURATION% /p:Version=%VERSION%%SUFFIX% /p:AssemblyVersion=%VERSION% /p:FileVersion=%VERSION% /p:DefineConstants="%CONFIGURATION%;USE_RELEASE_KEY"
44+
"%MSBUILD_CONSOLE%" "%PROJECT%.sln" /target:Clean /p:Configuration=%CONFIGURATION% /p:Version=%VERSION%%SUFFIX% /p:AssemblyVersion=%VERSION% /p:FileVersion=%VERSION% /p:DefineConstants="%CONFIGURATION%;USE_RELEASE_KEY"
45+
if errorlevel 1 goto error
46+
47+
"%MSBUILD_CONSOLE%" "%PROJECT%.sln" /target:Rebuild /p:Configuration=%CONFIGURATION% /p:Version=%VERSION%%SUFFIX% /p:AssemblyVersion=%VERSION% /p:FileVersion=%VERSION% /p:DefineConstants="%CONFIGURATION%;USE_RELEASE_KEY"
48+
if errorlevel 1 goto error
49+
50+
"%MSBUILD_CONSOLE%" "%PROJECT%.sln" /target:Build /p:Configuration=%CONFIGURATION% /p:Version=%VERSION%%SUFFIX% /p:AssemblyVersion=%VERSION% /p:FileVersion=%VERSION% /p:DefineConstants="%CONFIGURATION%;USE_RELEASE_KEY"
4551
if errorlevel 1 goto error
4652

4753
set TESTDLL=%CD%\%PROJECT%.Tests\bin\%CONFIGURATION%\%PROJECT%.Tests.dll

0 commit comments

Comments
 (0)