Skip to content

Commit 0e90bd4

Browse files
committed
Set project language to C#5
1 parent 68b870a commit 0e90bd4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

TestStack.Dossier/DataSources/Dictionaries/Words.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ internal Words(IGenerator generator, IDictionaryRepository repository, string di
2525
_dictionaryName = dictionaryName;
2626
}
2727

28-
internal string DictionaryName => _dictionaryName;
28+
internal string DictionaryName { get { return _dictionaryName; } }
2929

3030
/// <inheritdoc />
3131
protected override IList<string> InitializeDataSource()

TestStack.Dossier/TestStack.Dossier.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
<ErrorReport>prompt</ErrorReport>
2323
<WarningLevel>4</WarningLevel>
2424
<DocumentationFile>bin\Debug\TestStack.Dossier.xml</DocumentationFile>
25+
<LangVersion>5</LangVersion>
2526
</PropertyGroup>
2627
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2728
<DebugType>pdbonly</DebugType>

0 commit comments

Comments
 (0)