Skip to content

Commit c996d4f

Browse files
committed
Convert to VS2017 projects
1 parent 12407dc commit c996d4f

File tree

15 files changed

+672
-2109
lines changed

15 files changed

+672
-2109
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ current-test-configuration
1313
NHibernate.dll
1414
TestResult.xml
1515
/src/packages
16+
*.lock.json

src/NHibernate.DomainModel/NHibernate.DomainModel.csproj

Lines changed: 14 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,73 +1,44 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
34
<PropertyGroup>
45
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
56
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6-
<ProductVersion>9.0.30729</ProductVersion>
7-
<SchemaVersion>2.0</SchemaVersion>
8-
<ProjectGuid>{5C649B55-1B3F-4C38-9998-1B043E94A244}</ProjectGuid>
7+
<ProjectGuid>{7ABB1237-3251-41E3-92D0-9937D3734E40}</ProjectGuid>
98
<OutputType>Library</OutputType>
109
<AppDesignerFolder>Properties</AppDesignerFolder>
11-
<RootNamespace>NHibernate.DomainModel</RootNamespace>
12-
<AssemblyName>NHibernate.DomainModel</AssemblyName>
13-
<FileUpgradeFlags>
14-
</FileUpgradeFlags>
15-
<OldToolsVersion>3.5</OldToolsVersion>
16-
<UpgradeBackupLocation>
17-
</UpgradeBackupLocation>
10+
<RootNamespace>NHibernate.DomainModel2</RootNamespace>
11+
<AssemblyName>NHibernate.DomainModel2</AssemblyName>
1812
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
19-
<PublishUrl>publish\</PublishUrl>
20-
<Install>true</Install>
21-
<InstallFrom>Disk</InstallFrom>
22-
<UpdateEnabled>false</UpdateEnabled>
23-
<UpdateMode>Foreground</UpdateMode>
24-
<UpdateInterval>7</UpdateInterval>
25-
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
26-
<UpdatePeriodically>false</UpdatePeriodically>
27-
<UpdateRequired>false</UpdateRequired>
28-
<MapFileExtensions>true</MapFileExtensions>
29-
<ApplicationRevision>0</ApplicationRevision>
30-
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
31-
<IsWebBootstrapper>false</IsWebBootstrapper>
32-
<UseApplicationTrust>false</UseApplicationTrust>
33-
<BootstrapperEnabled>true</BootstrapperEnabled>
34-
<TargetFrameworkProfile />
13+
<FileAlignment>512</FileAlignment>
3514
</PropertyGroup>
3615
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
3716
<DebugSymbols>true</DebugSymbols>
3817
<DebugType>full</DebugType>
3918
<Optimize>false</Optimize>
40-
<OutputPath>bin\Debug-2.0\</OutputPath>
41-
<BaseIntermediateOutputPath>obj\</BaseIntermediateOutputPath>
42-
<IntermediateOutputPath>obj\Debug-2.0\</IntermediateOutputPath>
43-
<DefineConstants>TRACE;DEBUG</DefineConstants>
19+
<OutputPath>bin\Debug\</OutputPath>
20+
<DefineConstants>DEBUG;TRACE</DefineConstants>
4421
<ErrorReport>prompt</ErrorReport>
4522
<WarningLevel>4</WarningLevel>
46-
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
47-
<Prefer32Bit>false</Prefer32Bit>
4823
</PropertyGroup>
4924
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
5025
<DebugType>pdbonly</DebugType>
5126
<Optimize>true</Optimize>
52-
<OutputPath>bin\Release-2.0\</OutputPath>
53-
<BaseIntermediateOutputPath>obj\</BaseIntermediateOutputPath>
54-
<IntermediateOutputPath>obj\Release-2.0\</IntermediateOutputPath>
27+
<OutputPath>bin\Release\</OutputPath>
5528
<DefineConstants>TRACE</DefineConstants>
5629
<ErrorReport>prompt</ErrorReport>
5730
<WarningLevel>4</WarningLevel>
58-
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
59-
<Prefer32Bit>false</Prefer32Bit>
6031
</PropertyGroup>
6132
<ItemGroup>
6233
<Reference Include="Iesi.Collections, Version=4.0.0.0, Culture=neutral, PublicKeyToken=aa95f207798dfdb4, processorArchitecture=MSIL">
6334
<HintPath>..\packages\Iesi.Collections.4.0.1.4000\lib\net40\Iesi.Collections.dll</HintPath>
64-
<Private>True</Private>
6535
</Reference>
6636
<Reference Include="System" />
67-
<Reference Include="System.Core">
68-
<RequiredTargetFramework>3.5</RequiredTargetFramework>
69-
</Reference>
37+
<Reference Include="System.Core" />
38+
<Reference Include="System.Xml.Linq" />
39+
<Reference Include="Microsoft.CSharp" />
7040
<Reference Include="System.Data" />
41+
<Reference Include="System.Net.Http" />
7142
<Reference Include="System.Xml" />
7243
</ItemGroup>
7344
<ItemGroup>
@@ -305,12 +276,5 @@
305276
<ItemGroup>
306277
<None Include="packages.config" />
307278
</ItemGroup>
308-
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
309-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
310-
Other similar extension points exist, see Microsoft.Common.targets.
311-
<Target Name="BeforeBuild">
312-
</Target>
313-
<Target Name="AfterBuild">
314-
</Target>
315-
-->
279+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
316280
</Project>

src/NHibernate.Everything.sln

Lines changed: 24 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
1+
22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 14
4-
VisualStudioVersion = 14.0.25123.0
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.26114.2
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Support", "Support", "{9BDB5C84-14EC-4384-B423-9E319675B3CA}"
77
ProjectSection(FolderStartupServices) = postProject
@@ -97,6 +97,10 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "AssemblyInfo", "AssemblyInf
9797
SharedAssemblyInfo.cs = SharedAssemblyInfo.cs
9898
EndProjectSection
9999
EndProject
100+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "NHibernate", "NHibernate", "{A894DB23-2F62-454A-8A98-E95856EE44D2}"
101+
EndProject
102+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "backup", "NHibernate\backup\backup.csproj", "{916E69DF-190C-4D84-A249-93803E04387B}"
103+
EndProject
100104
Global
101105
GlobalSection(SolutionConfigurationPlatforms) = preSolution
102106
Debug|.NET = Debug|.NET
@@ -105,6 +109,10 @@ Global
105109
Release|.NET = Release|.NET
106110
Release|Any CPU = Release|Any CPU
107111
Release|Mixed Platforms = Release|Mixed Platforms
112+
Debug|x64 = Debug|x64
113+
Debug|x86 = Debug|x86
114+
Release|x64 = Release|x64
115+
Release|x86 = Release|x86
108116
EndGlobalSection
109117
GlobalSection(ProjectConfigurationPlatforms) = postSolution
110118
{5909BFE7-93CF-4E5F-BE22-6293368AF01D}.Debug|.NET.ActiveCfg = Debug|Any CPU
@@ -166,22 +174,31 @@ Global
166174
{7C2EF610-BCA0-4D1F-898A-DE9908E4970C}.Release|Any CPU.Build.0 = Release|Any CPU
167175
{7C2EF610-BCA0-4D1F-898A-DE9908E4970C}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
168176
{7C2EF610-BCA0-4D1F-898A-DE9908E4970C}.Release|Mixed Platforms.Build.0 = Release|Any CPU
177+
{916E69DF-190C-4D84-A249-93803E04387B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
178+
{916E69DF-190C-4D84-A249-93803E04387B}.Debug|Any CPU.Build.0 = Debug|Any CPU
179+
{916E69DF-190C-4D84-A249-93803E04387B}.Debug|x64.ActiveCfg = Debug|x64
180+
{916E69DF-190C-4D84-A249-93803E04387B}.Debug|x64.Build.0 = Debug|x64
181+
{916E69DF-190C-4D84-A249-93803E04387B}.Debug|x86.ActiveCfg = Debug|x86
182+
{916E69DF-190C-4D84-A249-93803E04387B}.Debug|x86.Build.0 = Debug|x86
183+
{916E69DF-190C-4D84-A249-93803E04387B}.Release|Any CPU.ActiveCfg = Release|Any CPU
184+
{916E69DF-190C-4D84-A249-93803E04387B}.Release|Any CPU.Build.0 = Release|Any CPU
185+
{916E69DF-190C-4D84-A249-93803E04387B}.Release|x64.ActiveCfg = Release|x64
186+
{916E69DF-190C-4D84-A249-93803E04387B}.Release|x64.Build.0 = Release|x64
187+
{916E69DF-190C-4D84-A249-93803E04387B}.Release|x86.ActiveCfg = Release|x86
188+
{916E69DF-190C-4D84-A249-93803E04387B}.Release|x86.Build.0 = Release|x86
169189
EndGlobalSection
170190
GlobalSection(SolutionProperties) = preSolution
171191
HideSolutionNode = FALSE
172192
EndGlobalSection
173193
GlobalSection(NestedProjects) = preSolution
174194
{094F74CD-2DD7-496F-BC48-A6D357BF33FD} = {28EA2C84-8295-49ED-BC67-803B7778513E}
175195
{92509065-DAEA-4457-8300-C7B64CD0E9F4} = {28EA2C84-8295-49ED-BC67-803B7778513E}
176-
{4CE16C2F-EFF6-48A4-99BC-8984DCC143FA} = {9BDB5C84-14EC-4384-B423-9E319675B3CA}
177-
{1631B0BA-59AC-4F0D-B300-3F64CC7579C9} = {9BDB5C84-14EC-4384-B423-9E319675B3CA}
178-
{936E50BD-4027-4864-ADE9-423C3FBF7FFB} = {9BDB5C84-14EC-4384-B423-9E319675B3CA}
179196
{5909BFE7-93CF-4E5F-BE22-6293368AF01D} = {094F74CD-2DD7-496F-BC48-A6D357BF33FD}
180197
{5C649B55-1B3F-4C38-9998-1B043E94A244} = {094F74CD-2DD7-496F-BC48-A6D357BF33FD}
181198
{7AEE5B37-C552-4E59-9B6F-88755BCB5070} = {094F74CD-2DD7-496F-BC48-A6D357BF33FD}
182199
{446E148D-A9D5-4D7D-A706-BEDD45B2BC7D} = {92509065-DAEA-4457-8300-C7B64CD0E9F4}
183200
{7C2EF610-BCA0-4D1F-898A-DE9908E4970C} = {094F74CD-2DD7-496F-BC48-A6D357BF33FD}
184-
{00C03FBC-6720-4917-A203-DEA12FF3C7BF} = {9BDB5C84-14EC-4384-B423-9E319675B3CA}
201+
{916E69DF-190C-4D84-A249-93803E04387B} = {A894DB23-2F62-454A-8A98-E95856EE44D2}
185202
EndGlobalSection
186203
GlobalSection(TextTemplating) = postSolution
187204
TextTemplating = 1

src/NHibernate.Test.VisualBasic/AssemblyInfo.vb

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,36 @@
11
Imports System
22
Imports System.Reflection
33
Imports System.Runtime.InteropServices
4+
Imports NUnit.Framework
45

5-
' General Information about an assembly is controlled through the following
6+
' General Information about an assembly is controlled through the following
67
' set of attributes. Change these attribute values to modify the information
78
' associated with an assembly.
89

910
' Review the values of the assembly attributes
1011

11-
<Assembly: AssemblyTitle("NHibernate.Test.VisualBasic")>
12-
<Assembly: AssemblyDescription("The Visual Basic Unit Tests for NHibernate.")>
13-
<Assembly: AssemblyCompany("Microsoft")>
14-
<Assembly: AssemblyProduct("NHibernate.Test.VisualBasic")>
15-
<Assembly: AssemblyCopyright("Copyright © Microsoft 2011")>
16-
<Assembly: AssemblyTrademark("")>
12+
<Assembly: AssemblyTitle("NHibernate.Test.VisualBasic")>
13+
<Assembly: AssemblyDescription("The Visual Basic Unit Tests for NHibernate.")>
14+
<Assembly: AssemblyCompany("NHibernate Community")>
15+
<Assembly: AssemblyProduct("NHibernate.Test.VisualBasic")>
16+
<Assembly: AssemblyCopyright("Copyright © NHibernate Community 2011 - 2017")>
17+
<Assembly: AssemblyTrademark("")>
1718

1819
<Assembly: ComVisible(False)>
1920

2021
'The following GUID is for the ID of the typelib if this project is exposed to COM
21-
<Assembly: Guid("f3bf0316-dff3-4f0c-918a-1f278d626d85")>
22+
<Assembly: Guid("34060097-6a6b-43c8-b952-3a2e10f2c7a2")>
2223

2324
' Version information for an assembly consists of the following four values:
2425
'
2526
' Major Version
26-
' Minor Version
27+
' Minor Version
2728
' Build Number
2829
' Revision
2930
'
30-
' You can specify all the values or you can default the Build and Revision Numbers
31+
' You can specify all the values or you can default the Build and Revision Numbers
3132
' by using the '*' as shown below:
32-
' <Assembly: AssemblyVersion("1.0.*")>
33+
' <Assembly: AssemblyVersion("1.0.*")>
3334

3435
<Assembly: CLSCompliant(False)>
36+
<assembly: LevelOfParallelism(0)>

src/NHibernate.Test.VisualBasic/My Project/Settings.Designer.vb

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/NHibernate.Test.VisualBasic/NHibernate.Test.VisualBasic.vbproj

Lines changed: 21 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,16 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
34
<PropertyGroup>
45
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
56
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6-
<ProductVersion>
7-
</ProductVersion>
8-
<SchemaVersion>
9-
</SchemaVersion>
10-
<ProjectGuid>{7C2EF610-BCA0-4D1F-898A-DE9908E4970C}</ProjectGuid>
7+
<ProjectGuid>{F43B3253-9011-4DAE-8777-BA0D8DA850A6}</ProjectGuid>
118
<OutputType>Library</OutputType>
129
<RootNamespace>NHibernate.Test.VisualBasic</RootNamespace>
1310
<AssemblyName>NHibernate.Test.VisualBasic</AssemblyName>
1411
<FileAlignment>512</FileAlignment>
1512
<MyType>Windows</MyType>
1613
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
17-
<TargetFrameworkProfile />
18-
<StartAction>Program</StartAction>
19-
<StartProgram>$(MSBuildProjectDirectory)\..\..\Tools\nunit\nunit-x86.exe</StartProgram>
20-
<StartArguments>NHibernate.Test.VisualBasic.dll</StartArguments>
2114
</PropertyGroup>
2215
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2316
<DebugSymbols>true</DebugSymbols>
@@ -27,7 +20,6 @@
2720
<OutputPath>bin\Debug\</OutputPath>
2821
<DocumentationFile>NHibernate.Test.VisualBasic.xml</DocumentationFile>
2922
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
30-
<Prefer32Bit>false</Prefer32Bit>
3123
</PropertyGroup>
3224
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
3325
<DebugType>pdbonly</DebugType>
@@ -37,7 +29,6 @@
3729
<OutputPath>bin\Release\</OutputPath>
3830
<DocumentationFile>NHibernate.Test.VisualBasic.xml</DocumentationFile>
3931
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
40-
<Prefer32Bit>false</Prefer32Bit>
4132
</PropertyGroup>
4233
<PropertyGroup>
4334
<OptionExplicit>On</OptionExplicit>
@@ -52,9 +43,8 @@
5243
<OptionInfer>On</OptionInfer>
5344
</PropertyGroup>
5445
<ItemGroup>
55-
<Reference Include="nunit.framework, Version=3.6.0.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
56-
<HintPath>..\packages\NUnit.3.6.0\lib\net45\nunit.framework.dll</HintPath>
57-
<Private>True</Private>
46+
<Reference Include="nunit.framework, Version=3.6.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
47+
<HintPath>..\packages\NUnit.3.6.1\lib\net45\nunit.framework.dll</HintPath>
5848
</Reference>
5949
<Reference Include="System" />
6050
<Reference Include="System.Data" />
@@ -77,19 +67,18 @@
7767
<Compile Include="..\SharedAssemblyInfo.vb">
7868
<Link>SharedAssemblyInfo.vb</Link>
7969
</Compile>
80-
<Compile Include="AssemblyInfo.vb" />
81-
<Compile Include="Issues\NH2966\Client.vb" />
82-
<Compile Include="Issues\NH2966\Fixture.vb" />
83-
<Compile Include="Issues\NH3302\Entity.vb" />
84-
<Compile Include="Issues\NH3302\Fixture.vb" />
85-
<Compile Include="Issues\NH2963\Entity.vb" />
86-
<Compile Include="Issues\NH2963\Fixture.vb" />
70+
<Compile Include="Issues\IssueTestCase.vb" />
8771
<Compile Include="Issues\NH0000\Entity.vb" />
8872
<Compile Include="Issues\NH0000\Fixture.vb" />
89-
<Compile Include="Issues\IssueTestCase.vb" />
90-
<Compile Include="Issues\NH2545\Fixture.vb" />
9173
<Compile Include="Issues\NH2545\Entity.vb" />
74+
<Compile Include="Issues\NH2545\Fixture.vb" />
75+
<Compile Include="Issues\NH2963\Entity.vb" />
76+
<Compile Include="Issues\NH2963\Fixture.vb" />
77+
<Compile Include="Issues\NH2966\Client.vb" />
78+
<Compile Include="Issues\NH2966\Fixture.vb" />
9279
<Compile Include="Issues\NH2966\Order.vb" />
80+
<Compile Include="Issues\NH3302\Entity.vb" />
81+
<Compile Include="Issues\NH3302\Fixture.vb" />
9382
<Compile Include="My Project\AssemblyInfo.vb" />
9483
<Compile Include="My Project\Application.Designer.vb">
9584
<AutoGen>True</AutoGen>
@@ -115,10 +104,6 @@
115104
</EmbeddedResource>
116105
</ItemGroup>
117106
<ItemGroup>
118-
<None Include="..\NHibernate.Test\App.config">
119-
<Link>App.config</Link>
120-
<SubType>Designer</SubType>
121-
</None>
122107
<None Include="My Project\Application.myapp">
123108
<Generator>MyApplicationCodeGenerator</Generator>
124109
<LastGenOutput>Application.Designer.vb</LastGenOutput>
@@ -130,32 +115,21 @@
130115
</None>
131116
<None Include="packages.config" />
132117
</ItemGroup>
118+
<ItemGroup>
119+
<EmbeddedResource Include="Issues\NH0000\Issues.NH0000.Mappings.hbm.xml" />
120+
<EmbeddedResource Include="Issues\NH2545\Issues.NH2545.Mappings.hbm.xml" />
121+
<EmbeddedResource Include="Issues\NH2966\Issues.NH2966.Mappings.hbm.xml" />
122+
<EmbeddedResource Include="Issues\NH3302\Issues.NH3302.Mappings.hbm.xml" />
123+
</ItemGroup>
133124
<ItemGroup>
134125
<ProjectReference Include="..\NHibernate.Test\NHibernate.Test.csproj">
135-
<Project>{7AEE5B37-C552-4E59-9B6F-88755BCB5070}</Project>
126+
<Project>{1b7e9512-5b0f-45be-82ad-5ebda404bde3}</Project>
136127
<Name>NHibernate.Test</Name>
137128
</ProjectReference>
138129
<ProjectReference Include="..\NHibernate\NHibernate.csproj">
139-
<Project>{5909BFE7-93CF-4E5F-BE22-6293368AF01D}</Project>
130+
<Project>{d39e4139-6011-4db2-837e-20c9be221b9c}</Project>
140131
<Name>NHibernate</Name>
141132
</ProjectReference>
142133
</ItemGroup>
143-
<ItemGroup>
144-
<EmbeddedResource Include="Issues\NH2545\Issues.NH2545.Mappings.hbm.xml" />
145-
</ItemGroup>
146-
<ItemGroup>
147-
<EmbeddedResource Include="Issues\NH0000\Issues.NH0000.Mappings.hbm.xml" />
148-
</ItemGroup>
149-
<ItemGroup>
150-
<EmbeddedResource Include="Issues\NH2966\Issues.NH2966.Mappings.hbm.xml" />
151-
<EmbeddedResource Include="Issues\NH3302\Issues.NH3302.Mappings.hbm.xml" />
152-
</ItemGroup>
153134
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
154-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
155-
Other similar extension points exist, see Microsoft.Common.targets.
156-
<Target Name="BeforeBuild">
157-
</Target>
158-
<Target Name="AfterBuild">
159-
</Target>
160-
-->
161135
</Project>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="NUnit" version="3.6.0" targetFramework="net461" />
3+
<package id="NUnit" version="3.6.1" targetFramework="net461" />
44
</packages>

0 commit comments

Comments
 (0)