Skip to content

Commit aafe973

Browse files
committedNov 12, 2013
Fixed XML extension casing in .csproj output
1 parent 2f380cb commit aafe973

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎SimplSockets.sln

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimplSockets", "SimplSocket
55
EndProject
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{FA9E9333-3010-4D4D-918A-D881895115B4}"
77
ProjectSection(SolutionItems) = preProject
8-
..\LICENSE.txt = ..\LICENSE.txt
9-
..\README.md = ..\README.md
8+
LICENSE.txt = LICENSE.txt
9+
README.md = README.md
1010
EndProjectSection
1111
EndProject
1212
Global

‎SimplSockets/SimplSockets.csproj

+2-2
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-
<DocumentationFile>bin\Debug\SimplSockets.XML</DocumentationFile>
23+
<DocumentationFile>bin\Debug\SimplSockets.xml</DocumentationFile>
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-
<DocumentationFile>bin\Release\SimplSockets.XML</DocumentationFile>
32+
<DocumentationFile>bin\Release\SimplSockets.xml</DocumentationFile>
3333
</PropertyGroup>
3434
<ItemGroup>
3535
<Reference Include="System" />

0 commit comments

Comments
 (0)
Please sign in to comment.