Skip to content

Commit bb1ccd6

Browse files
committed
update CI and dependencies
1 parent 6805f82 commit bb1ccd6

File tree

9 files changed

+71
-141
lines changed

9 files changed

+71
-141
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
build:
9-
runs-on: windows-2016
9+
runs-on: windows-2019
1010
steps:
1111
- uses: nuget/setup-nuget@v1
1212
- uses: microsoft/setup-msbuild@v1
@@ -22,7 +22,7 @@ jobs:
2222
msbuild money/cs-money.csproj /p:Configuration=Debug /p:runCodeAnalysis=true /p:codeanalysislogfile=..\analysis.xml
2323
- name: Test
2424
run: |
25-
.\money\packages\OpenCover.4.6.519\tools\OpenCover.Console -target:".\money\packages\NUnit.ConsoleRunner.3.4.1\tools\nunit3-console.exe" -targetargs:"money\bin\Debug\cs-money.dll" -output:"coverage.xml" -filter:"+[*]* -[*]*MoneyTest*" -register:user
25+
.\money\packages\OpenCover.4.7.1221\tools\OpenCover.Console -target:".\money\packages\NUnit.ConsoleRunner.3.13.2\tools\nunit3-console.exe" -targetargs:"money\bin\Debug\cs-money.dll" -output:"coverage.xml" -filter:"+[*]* -[*]*MoneyTest*" -register:user
2626
- name: Push
2727
run: |
2828
testspace analysis.xml [Tests]TestResult.xml coverage.xml
Lines changed: 17 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
3+
<Import Project="packages\NUnit.3.13.2\build\NUnit.props" Condition="Exists('packages\NUnit.3.13.2\build\NUnit.props')" />
34
<PropertyGroup>
45
<ProjectType>Local</ProjectType>
56
<ProductVersion>7.10.3077</ProductVersion>
@@ -18,25 +19,13 @@
1819
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
1920
<FileUpgradeFlags>
2021
</FileUpgradeFlags>
21-
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
22+
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
2223
<UpgradeBackupLocation>
2324
</UpgradeBackupLocation>
2425
<OldToolsVersion>0.0</OldToolsVersion>
25-
<PublishUrl>publish\</PublishUrl>
26-
<Install>true</Install>
27-
<InstallFrom>Disk</InstallFrom>
28-
<UpdateEnabled>false</UpdateEnabled>
29-
<UpdateMode>Foreground</UpdateMode>
30-
<UpdateInterval>7</UpdateInterval>
31-
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
32-
<UpdatePeriodically>false</UpdatePeriodically>
33-
<UpdateRequired>false</UpdateRequired>
34-
<MapFileExtensions>true</MapFileExtensions>
35-
<ApplicationRevision>0</ApplicationRevision>
36-
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
37-
<IsWebBootstrapper>false</IsWebBootstrapper>
38-
<UseApplicationTrust>false</UseApplicationTrust>
39-
<BootstrapperEnabled>true</BootstrapperEnabled>
26+
<TargetFrameworkProfile />
27+
<NuGetPackageImportStamp>
28+
</NuGetPackageImportStamp>
4029
</PropertyGroup>
4130
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
4231
<OutputPath>bin\Debug\</OutputPath>
@@ -53,6 +42,7 @@
5342
<DebugType>full</DebugType>
5443
<ErrorReport>prompt</ErrorReport>
5544
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
45+
<Prefer32Bit>false</Prefer32Bit>
5646
</PropertyGroup>
5747
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
5848
<OutputPath>bin\Release\</OutputPath>
@@ -68,14 +58,11 @@
6858
<DebugType>none</DebugType>
6959
<ErrorReport>prompt</ErrorReport>
7060
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
61+
<Prefer32Bit>false</Prefer32Bit>
7162
</PropertyGroup>
7263
<ItemGroup>
73-
<Reference Include="nunit.framework, Version=3.4.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
74-
<HintPath>packages\NUnit.3.4.1\lib\net20\nunit.framework.dll</HintPath>
75-
<Private>True</Private>
76-
</Reference>
77-
<Reference Include="NUnit.System.Linq, Version=0.2.0.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
78-
<HintPath>packages\NUnit.3.4.1\lib\net20\NUnit.System.Linq.dll</HintPath>
64+
<Reference Include="nunit.framework, Version=3.13.2.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
65+
<HintPath>packages\NUnit.3.13.2\lib\net45\nunit.framework.dll</HintPath>
7966
<Private>True</Private>
8067
</Reference>
8168
<Reference Include="System">
@@ -93,23 +80,6 @@
9380
<SubType>Code</SubType>
9481
</Compile>
9582
</ItemGroup>
96-
<ItemGroup>
97-
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
98-
<Visible>False</Visible>
99-
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
100-
<Install>false</Install>
101-
</BootstrapperPackage>
102-
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
103-
<Visible>False</Visible>
104-
<ProductName>.NET Framework 3.5 SP1</ProductName>
105-
<Install>true</Install>
106-
</BootstrapperPackage>
107-
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
108-
<Visible>False</Visible>
109-
<ProductName>Windows Installer 3.1</ProductName>
110-
<Install>true</Install>
111-
</BootstrapperPackage>
112-
</ItemGroup>
11383
<ItemGroup>
11484
<None Include="packages.config" />
11585
</ItemGroup>
@@ -118,4 +88,10 @@
11888
<PreBuildEvent />
11989
<PostBuildEvent />
12090
</PropertyGroup>
91+
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
92+
<PropertyGroup>
93+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
94+
</PropertyGroup>
95+
<Error Condition="!Exists('packages\NUnit.3.13.2\build\NUnit.props')" Text="$([System.String]::Format('$(ErrorText)', 'packages\NUnit.3.13.2\build\NUnit.props'))" />
96+
</Target>
12197
</Project>
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="NUnit" version="3.4.1" targetFramework="net20" />
4-
<package id="NUnit.ConsoleRunner" version="3.4.1" targetFramework="net20" />
5-
</packages>
3+
<package id="NUnit" version="3.13.2" targetFramework="net461" />
4+
<package id="NUnit.ConsoleRunner" version="3.13.2" targetFramework="net461" />
5+
</packages>

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ build_script:
1212
- msbuild money/cs-money.csproj /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" /p:runCodeAnalysis=true /p:codeanalysislogfile=..\analysis.xml
1313

1414
test_script:
15-
- .\money\packages\OpenCover.4.6.519\tools\OpenCover.Console -target:".\money\packages\NUnit.ConsoleRunner.3.4.1\tools\nunit3-console.exe" -targetargs:"money\bin\Debug\cs-money.dll" -output:"coverage.xml" -filter:"+[*]* -[*]*MoneyTest*" -register:user
15+
- .\money\packages\OpenCover.4.7.1221\tools\OpenCover.Console -target:".\money\packages\NUnit.ConsoleRunner.3.13.2\tools\nunit3-console.exe" -targetargs:"money\bin\Debug\cs-money.dll" -output:"coverage.xml" -filter:"+[*]* -[*]*MoneyTest*" -register:user
1616

1717
after_test:
1818
- testspace analysis.xml [Tests]TestResult.xml coverage.xml

azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
jobs:
22
- job: Windows
33
pool:
4-
vmImage: vs2017-win2016
4+
vmImage: windows-2019
55
steps:
66
- bash: |
77
curl -OsSL https://testspace-client.s3.amazonaws.com/testspace-windows.zip
@@ -20,7 +20,7 @@ jobs:
2020
configuration: Debug
2121
msbuildArgs: '/p:runCodeAnalysis=true /p:codeanalysislogfile=..\analysis.xml'
2222
- script: |
23-
.\money\packages\OpenCover.4.6.519\tools\OpenCover.Console -target:".\money\packages\NUnit.ConsoleRunner.3.4.1\tools\nunit3-console.exe" -targetargs:"money\bin\Debug\cs-money.dll" -output:"coverage.xml" -filter:"+[*]* -[*]*MoneyTest*" -register:user
23+
.\money\packages\OpenCover.4.7.1221\tools\OpenCover.Console -target:".\money\packages\NUnit.ConsoleRunner.3.13.2\tools\nunit3-console.exe" -targetargs:"money\bin\Debug\cs-money.dll" -output:"coverage.xml" -filter:"+[*]* -[*]*MoneyTest*" -register:user
2424
displayName: 'Test'
2525
- script: |
2626
testspace analysis.xml [Tests]TestResult.xml coverage.xml

money/cs-money.csproj

Lines changed: 19 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
3+
<Import Project="packages\NUnit.3.13.2\build\NUnit.props" Condition="Exists('packages\NUnit.3.13.2\build\NUnit.props')" />
34
<PropertyGroup>
45
<ProjectType>Local</ProjectType>
56
<ProductVersion>7.10.3077</ProductVersion>
@@ -18,25 +19,13 @@
1819
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
1920
<FileUpgradeFlags>
2021
</FileUpgradeFlags>
21-
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
22+
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
2223
<UpgradeBackupLocation>
2324
</UpgradeBackupLocation>
2425
<OldToolsVersion>0.0</OldToolsVersion>
25-
<PublishUrl>publish\</PublishUrl>
26-
<Install>true</Install>
27-
<InstallFrom>Disk</InstallFrom>
28-
<UpdateEnabled>false</UpdateEnabled>
29-
<UpdateMode>Foreground</UpdateMode>
30-
<UpdateInterval>7</UpdateInterval>
31-
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
32-
<UpdatePeriodically>false</UpdatePeriodically>
33-
<UpdateRequired>false</UpdateRequired>
34-
<MapFileExtensions>true</MapFileExtensions>
35-
<ApplicationRevision>0</ApplicationRevision>
36-
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
37-
<IsWebBootstrapper>false</IsWebBootstrapper>
38-
<UseApplicationTrust>false</UseApplicationTrust>
39-
<BootstrapperEnabled>true</BootstrapperEnabled>
26+
<TargetFrameworkProfile />
27+
<NuGetPackageImportStamp>
28+
</NuGetPackageImportStamp>
4029
</PropertyGroup>
4130
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
4231
<OutputPath>bin\Debug\</OutputPath>
@@ -53,6 +42,7 @@
5342
<DebugType>full</DebugType>
5443
<ErrorReport>prompt</ErrorReport>
5544
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
45+
<Prefer32Bit>false</Prefer32Bit>
5646
</PropertyGroup>
5747
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
5848
<OutputPath>bin\Release\</OutputPath>
@@ -68,14 +58,11 @@
6858
<DebugType>none</DebugType>
6959
<ErrorReport>prompt</ErrorReport>
7060
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
61+
<Prefer32Bit>false</Prefer32Bit>
7162
</PropertyGroup>
7263
<ItemGroup>
73-
<Reference Include="nunit.framework, Version=3.4.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
74-
<HintPath>packages\NUnit.3.4.1\lib\net20\nunit.framework.dll</HintPath>
75-
<Private>True</Private>
76-
</Reference>
77-
<Reference Include="NUnit.System.Linq, Version=0.2.0.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
78-
<HintPath>packages\NUnit.3.4.1\lib\net20\NUnit.System.Linq.dll</HintPath>
64+
<Reference Include="nunit.framework, Version=3.13.2.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
65+
<HintPath>packages\NUnit.3.13.2\lib\net45\nunit.framework.dll</HintPath>
7966
<Private>True</Private>
8067
</Reference>
8168
<Reference Include="System">
@@ -99,23 +86,6 @@
9986
<SubType>Code</SubType>
10087
</Compile>
10188
</ItemGroup>
102-
<ItemGroup>
103-
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
104-
<Visible>False</Visible>
105-
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
106-
<Install>false</Install>
107-
</BootstrapperPackage>
108-
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
109-
<Visible>False</Visible>
110-
<ProductName>.NET Framework 3.5 SP1</ProductName>
111-
<Install>true</Install>
112-
</BootstrapperPackage>
113-
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
114-
<Visible>False</Visible>
115-
<ProductName>Windows Installer 3.1</ProductName>
116-
<Install>true</Install>
117-
</BootstrapperPackage>
118-
</ItemGroup>
11989
<ItemGroup>
12090
<None Include="packages.config" />
12191
</ItemGroup>
@@ -124,4 +94,12 @@
12494
<PreBuildEvent />
12595
<PostBuildEvent />
12696
</PropertyGroup>
97+
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
98+
<PropertyGroup>
99+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
100+
</PropertyGroup>
101+
<Error Condition="!Exists('packages\NUnit.3.13.2\build\NUnit.props')" Text="$([System.String]::Format('$(ErrorText)', 'packages\NUnit.3.13.2\build\NUnit.props'))" />
102+
<Error Condition="!Exists('packages\OpenCover.4.7.1221\build\OpenCover.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\OpenCover.4.7.1221\build\OpenCover.targets'))" />
103+
</Target>
104+
<Import Project="packages\OpenCover.4.7.1221\build\OpenCover.targets" Condition="Exists('packages\OpenCover.4.7.1221\build\OpenCover.targets')" />
127105
</Project>

money/packages.config

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="NUnit" version="3.4.1" targetFramework="net20" />
4-
<package id="NUnit.ConsoleRunner" version="3.4.1" targetFramework="net20" />
5-
<package id="OpenCover" version="4.6.519" targetFramework="net20" />
6-
</packages>
3+
<package id="NUnit" version="3.13.2" targetFramework="net461" />
4+
<package id="NUnit.ConsoleRunner" version="3.13.2" targetFramework="net461" />
5+
<package id="OpenCover" version="4.7.1221" targetFramework="net461" />
6+
</packages>

syntax/cs-syntax.csproj

Lines changed: 17 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
3+
<Import Project="packages\NUnit.3.13.2\build\NUnit.props" Condition="Exists('packages\NUnit.3.13.2\build\NUnit.props')" />
34
<PropertyGroup>
45
<ProjectType>Local</ProjectType>
56
<ProductVersion>7.10.3077</ProductVersion>
@@ -18,25 +19,13 @@
1819
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
1920
<FileUpgradeFlags>
2021
</FileUpgradeFlags>
21-
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
22+
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
2223
<UpgradeBackupLocation>
2324
</UpgradeBackupLocation>
2425
<OldToolsVersion>0.0</OldToolsVersion>
25-
<PublishUrl>publish\</PublishUrl>
26-
<Install>true</Install>
27-
<InstallFrom>Disk</InstallFrom>
28-
<UpdateEnabled>false</UpdateEnabled>
29-
<UpdateMode>Foreground</UpdateMode>
30-
<UpdateInterval>7</UpdateInterval>
31-
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
32-
<UpdatePeriodically>false</UpdatePeriodically>
33-
<UpdateRequired>false</UpdateRequired>
34-
<MapFileExtensions>true</MapFileExtensions>
35-
<ApplicationRevision>0</ApplicationRevision>
36-
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
37-
<IsWebBootstrapper>false</IsWebBootstrapper>
38-
<UseApplicationTrust>false</UseApplicationTrust>
39-
<BootstrapperEnabled>true</BootstrapperEnabled>
26+
<TargetFrameworkProfile />
27+
<NuGetPackageImportStamp>
28+
</NuGetPackageImportStamp>
4029
</PropertyGroup>
4130
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
4231
<OutputPath>bin\Debug\</OutputPath>
@@ -53,6 +42,7 @@
5342
<DebugType>full</DebugType>
5443
<ErrorReport>prompt</ErrorReport>
5544
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
45+
<Prefer32Bit>false</Prefer32Bit>
5646
</PropertyGroup>
5747
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
5848
<OutputPath>bin\Release\</OutputPath>
@@ -68,14 +58,11 @@
6858
<DebugType>none</DebugType>
6959
<ErrorReport>prompt</ErrorReport>
7060
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
61+
<Prefer32Bit>false</Prefer32Bit>
7162
</PropertyGroup>
7263
<ItemGroup>
73-
<Reference Include="nunit.framework, Version=3.4.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
74-
<HintPath>packages\NUnit.3.4.1\lib\net20\nunit.framework.dll</HintPath>
75-
<Private>True</Private>
76-
</Reference>
77-
<Reference Include="NUnit.System.Linq, Version=0.2.0.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
78-
<HintPath>packages\NUnit.3.4.1\lib\net20\NUnit.System.Linq.dll</HintPath>
64+
<Reference Include="nunit.framework, Version=3.13.2.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
65+
<HintPath>packages\NUnit.3.13.2\lib\net45\nunit.framework.dll</HintPath>
7966
<Private>True</Private>
8067
</Reference>
8168
<Reference Include="System">
@@ -90,23 +77,6 @@
9077
<SubType>Code</SubType>
9178
</Compile>
9279
</ItemGroup>
93-
<ItemGroup>
94-
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
95-
<Visible>False</Visible>
96-
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
97-
<Install>false</Install>
98-
</BootstrapperPackage>
99-
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
100-
<Visible>False</Visible>
101-
<ProductName>.NET Framework 3.5 SP1</ProductName>
102-
<Install>true</Install>
103-
</BootstrapperPackage>
104-
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
105-
<Visible>False</Visible>
106-
<ProductName>Windows Installer 3.1</ProductName>
107-
<Install>true</Install>
108-
</BootstrapperPackage>
109-
</ItemGroup>
11080
<ItemGroup>
11181
<None Include="packages.config" />
11282
</ItemGroup>
@@ -115,4 +85,10 @@
11585
<PreBuildEvent />
11686
<PostBuildEvent />
11787
</PropertyGroup>
88+
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
89+
<PropertyGroup>
90+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
91+
</PropertyGroup>
92+
<Error Condition="!Exists('packages\NUnit.3.13.2\build\NUnit.props')" Text="$([System.String]::Format('$(ErrorText)', 'packages\NUnit.3.13.2\build\NUnit.props'))" />
93+
</Target>
11894
</Project>

syntax/packages.config

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="NUnit" version="3.4.1" targetFramework="net20" />
4-
<package id="NUnit.ConsoleRunner" version="3.4.1" targetFramework="net20" />
5-
</packages>
3+
<package id="NUnit" version="3.13.2" targetFramework="net461" />
4+
<package id="NUnit.ConsoleRunner" version="3.13.2" targetFramework="net461" />
5+
</packages>

0 commit comments

Comments
 (0)