Skip to content

Commit 06bb967

Browse files
committed
Upgrade project to C# 7.2
1 parent a3e88e8 commit 06bb967

File tree

9 files changed

+21
-21
lines changed

9 files changed

+21
-21
lines changed

RetailCoder.VBE/Rubberduck.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<NoWarn>1591</NoWarn>
3232
<PlatformTarget>AnyCPU</PlatformTarget>
3333
<UseVSHostingProcess>true</UseVSHostingProcess>
34-
<LangVersion>7.1</LangVersion>
34+
<LangVersion>7.2</LangVersion>
3535
</PropertyGroup>
3636
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
3737
<DebugType>full</DebugType>
@@ -44,7 +44,7 @@
4444
<DocumentationFile>bin\Release\Rubberduck.XML</DocumentationFile>
4545
<DebugSymbols>true</DebugSymbols>
4646
<NoWarn>1591</NoWarn>
47-
<LangVersion>7.1</LangVersion>
47+
<LangVersion>7.2</LangVersion>
4848
</PropertyGroup>
4949
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugAccess|AnyCPU'">
5050
<DebugSymbols>true</DebugSymbols>
@@ -58,7 +58,7 @@
5858
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
5959
<WarningLevel>4</WarningLevel>
6060
<Optimize>false</Optimize>
61-
<LangVersion>7.1</LangVersion>
61+
<LangVersion>7.2</LangVersion>
6262
</PropertyGroup>
6363
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
6464
<DebugSymbols>true</DebugSymbols>
@@ -156,7 +156,7 @@
156156
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
157157
<WarningLevel>4</WarningLevel>
158158
<Optimize>false</Optimize>
159-
<LangVersion>7.1</LangVersion>
159+
<LangVersion>7.2</LangVersion>
160160
</PropertyGroup>
161161
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug64|x64'">
162162
<DebugSymbols>true</DebugSymbols>
@@ -197,7 +197,7 @@
197197
<ErrorReport>prompt</ErrorReport>
198198
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
199199
<WarningLevel>4</WarningLevel>
200-
<LangVersion>7.1</LangVersion>
200+
<LangVersion>7.2</LangVersion>
201201
</PropertyGroup>
202202
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release64|x64'">
203203
<DebugSymbols>true</DebugSymbols>

Rubberduck.Inspections/Rubberduck.Inspections.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<DefineConstants>DEBUG;TRACE</DefineConstants>
2222
<ErrorReport>prompt</ErrorReport>
2323
<WarningLevel>4</WarningLevel>
24-
<LangVersion>7.1</LangVersion>
24+
<LangVersion>7.2</LangVersion>
2525
</PropertyGroup>
2626
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2727
<DebugType>pdbonly</DebugType>
@@ -30,7 +30,7 @@
3030
<DefineConstants>TRACE</DefineConstants>
3131
<ErrorReport>prompt</ErrorReport>
3232
<WarningLevel>4</WarningLevel>
33-
<LangVersion>7.1</LangVersion>
33+
<LangVersion>7.2</LangVersion>
3434
</PropertyGroup>
3535
<PropertyGroup>
3636
<RunPostBuildEvent>Always</RunPostBuildEvent>

Rubberduck.Parsing/Rubberduck.Parsing.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<ErrorReport>prompt</ErrorReport>
2626
<WarningLevel>4</WarningLevel>
2727
<UseVSHostingProcess>true</UseVSHostingProcess>
28-
<LangVersion>7.1</LangVersion>
28+
<LangVersion>7.2</LangVersion>
2929
</PropertyGroup>
3030
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
3131
<DebugType>pdbonly</DebugType>
@@ -34,7 +34,7 @@
3434
<DefineConstants>TRACE</DefineConstants>
3535
<ErrorReport>prompt</ErrorReport>
3636
<WarningLevel>4</WarningLevel>
37-
<LangVersion>7.1</LangVersion>
37+
<LangVersion>7.2</LangVersion>
3838
</PropertyGroup>
3939
<PropertyGroup>
4040
<ApplicationIcon>

Rubberduck.RegexAssistant/Rubberduck.RegexAssistant.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<DefineConstants>DEBUG;TRACE</DefineConstants>
2222
<ErrorReport>prompt</ErrorReport>
2323
<WarningLevel>4</WarningLevel>
24-
<LangVersion>7.1</LangVersion>
24+
<LangVersion>7.2</LangVersion>
2525
</PropertyGroup>
2626
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2727
<DebugType>pdbonly</DebugType>
@@ -30,7 +30,7 @@
3030
<DefineConstants>TRACE</DefineConstants>
3131
<ErrorReport>prompt</ErrorReport>
3232
<WarningLevel>4</WarningLevel>
33-
<LangVersion>7.1</LangVersion>
33+
<LangVersion>7.2</LangVersion>
3434
</PropertyGroup>
3535
<ItemGroup>
3636
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />

Rubberduck.SettingsProvider/Rubberduck.SettingsProvider.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<DefineConstants>DEBUG;TRACE</DefineConstants>
2121
<ErrorReport>prompt</ErrorReport>
2222
<WarningLevel>4</WarningLevel>
23-
<LangVersion>7.1</LangVersion>
23+
<LangVersion>7.2</LangVersion>
2424
</PropertyGroup>
2525
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2626
<DebugType>pdbonly</DebugType>
@@ -29,7 +29,7 @@
2929
<DefineConstants>TRACE</DefineConstants>
3030
<ErrorReport>prompt</ErrorReport>
3131
<WarningLevel>4</WarningLevel>
32-
<LangVersion>7.1</LangVersion>
32+
<LangVersion>7.2</LangVersion>
3333
</PropertyGroup>
3434
<ItemGroup>
3535
<Reference Include="NLog, Version=4.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">

Rubberduck.SmartIndenter/Rubberduck.SmartIndenter.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<ErrorReport>prompt</ErrorReport>
2222
<WarningLevel>4</WarningLevel>
2323
<UseVSHostingProcess>true</UseVSHostingProcess>
24-
<LangVersion>7.1</LangVersion>
24+
<LangVersion>7.2</LangVersion>
2525
</PropertyGroup>
2626
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2727
<DebugType>pdbonly</DebugType>
@@ -30,7 +30,7 @@
3030
<DefineConstants>TRACE</DefineConstants>
3131
<ErrorReport>prompt</ErrorReport>
3232
<WarningLevel>4</WarningLevel>
33-
<LangVersion>7.1</LangVersion>
33+
<LangVersion>7.2</LangVersion>
3434
</PropertyGroup>
3535
<ItemGroup>
3636
<Reference Include="Microsoft.Vbe.Interop, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c">

Rubberduck.SourceControl/Rubberduck.SourceControl.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<WarningLevel>4</WarningLevel>
2828
<RegisterForComInterop>true</RegisterForComInterop>
2929
<UseVSHostingProcess>true</UseVSHostingProcess>
30-
<LangVersion>7.1</LangVersion>
30+
<LangVersion>7.2</LangVersion>
3131
</PropertyGroup>
3232
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
3333
<DebugType>pdbonly</DebugType>
@@ -36,7 +36,7 @@
3636
<DefineConstants>TRACE</DefineConstants>
3737
<ErrorReport>prompt</ErrorReport>
3838
<WarningLevel>4</WarningLevel>
39-
<LangVersion>7.1</LangVersion>
39+
<LangVersion>7.2</LangVersion>
4040
</PropertyGroup>
4141
<ItemGroup>
4242
<Reference Include="LibGit2Sharp, Version=0.24.0.0, Culture=neutral, PublicKeyToken=7cbde695407f0333, processorArchitecture=MSIL">

Rubberduck.VBEEditor/Rubberduck.VBEditor.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<ErrorReport>prompt</ErrorReport>
2222
<WarningLevel>4</WarningLevel>
2323
<UseVSHostingProcess>true</UseVSHostingProcess>
24-
<LangVersion>7.1</LangVersion>
24+
<LangVersion>7.2</LangVersion>
2525
</PropertyGroup>
2626
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2727
<DebugType>pdbonly</DebugType>
@@ -30,7 +30,7 @@
3030
<DefineConstants>TRACE</DefineConstants>
3131
<ErrorReport>prompt</ErrorReport>
3232
<WarningLevel>4</WarningLevel>
33-
<LangVersion>7.1</LangVersion>
33+
<LangVersion>7.2</LangVersion>
3434
</PropertyGroup>
3535
<ItemGroup>
3636
<Reference Include="Interop.SldWorks.Extensibility">

RubberduckTests/RubberduckTests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<ErrorReport>prompt</ErrorReport>
3131
<WarningLevel>4</WarningLevel>
3232
<UseVSHostingProcess>true</UseVSHostingProcess>
33-
<LangVersion>7.1</LangVersion>
33+
<LangVersion>7.2</LangVersion>
3434
</PropertyGroup>
3535
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
3636
<DebugType>pdbonly</DebugType>
@@ -39,7 +39,7 @@
3939
<DefineConstants>TRACE</DefineConstants>
4040
<ErrorReport>prompt</ErrorReport>
4141
<WarningLevel>4</WarningLevel>
42-
<LangVersion>7.1</LangVersion>
42+
<LangVersion>7.2</LangVersion>
4343
</PropertyGroup>
4444
<ItemGroup>
4545
<Reference Include="Antlr4.Runtime.net45">

0 commit comments

Comments
 (0)