Skip to content
This repository was archived by the owner on Jan 7, 2021. It is now read-only.

Commit f279bb5

Browse files
committed
Set language version to latest.
1 parent cf0db35 commit f279bb5

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

XmlAbstraction.csproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,17 @@
2626
<DocumentationFile>bin\Debug\XmlAbstraction.xml</DocumentationFile>
2727
</PropertyGroup>
2828
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
29-
<DebugType>pdbonly</DebugType>
29+
<DebugType>full</DebugType>
3030
<Optimize>true</Optimize>
3131
<OutputPath>bin\Release\</OutputPath>
3232
<DefineConstants>TRACE</DefineConstants>
33-
<ErrorReport>prompt</ErrorReport>
33+
<ErrorReport>send</ErrorReport>
3434
<WarningLevel>4</WarningLevel>
3535
<CodeAnalysisRuleSet>XmlAbstraction.ruleset</CodeAnalysisRuleSet>
3636
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
3737
<DocumentationFile>bin\Release\XmlAbstraction.xml</DocumentationFile>
38+
<LangVersion>latest</LangVersion>
39+
<DebugSymbols>true</DebugSymbols>
3840
</PropertyGroup>
3941
<ItemGroup>
4042
<Reference Include="System" />

XmlObject.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace XmlAbstraction
1515
/// <summary>
1616
/// Class that allows Reading and Writing of XML Files.
1717
/// </summary>
18-
public sealed partial class XmlObject : IDisposable
18+
public class XmlObject : IDisposable
1919
{
2020
// TODO: Add functions to remove XML Entries and Attributes too.
2121
// TODO: Finish Read(string elementname, string attributename) and Write(string elementname, string attributename, object attributevalue) shortcut methods.

0 commit comments

Comments
 (0)