Skip to content

Commit 3084236

Browse files
committed
normalize XML --> xml
1 parent 4975b66 commit 3084236

File tree

57 files changed

+114
-114
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+114
-114
lines changed

nuget/paket.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ tags
1616
F#, fsharp, interactive, compiler, editor
1717
files
1818
../bin/v4.0/FSharp.Compiler.Service.dll ==> lib/net40
19-
../bin/v4.0/FSharp.Compiler.Service.XML ==> lib/net40
19+
../bin/v4.0/FSharp.Compiler.Service.xml ==> lib/net40
2020
../bin/v4.0/FSharp.Compiler.Service.?db ==> lib/net40
2121
../bin/v4.0/FSharp.Compiler.Service.dll.?db ==> lib/net40
2222
../bin/v4.5/FSharp.Compiler.Service.dll ==> lib/net45
23-
../bin/v4.5/FSharp.Compiler.Service.XML ==> lib/net45
23+
../bin/v4.5/FSharp.Compiler.Service.xml ==> lib/net45
2424
../bin/v4.5/FSharp.Compiler.Service.?db ==> lib/net45
2525
../bin/v4.5/FSharp.Compiler.Service.dll.?db ==> lib/net45

nuget/projectcracker.template

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ iconurl https://raw.github.com/fsharp/FSharp.Compiler.Service/master/misc/logo.p
1212
tags
1313
F#, fsharp, msbuild, editor
1414
files
15-
../bin/v4.5/FSharp.Compiler.Service.ProjectCracker.Exe.exe ==> lib/net45
16-
../bin/v4.5/FSharp.Compiler.Service.ProjectCracker.Exe.?db ==> lib/net45
17-
../bin/v4.5/FSharp.Compiler.Service.ProjectCracker.Exe.exe.?db ==> lib/net45
15+
../bin/v4.5/FSharp.Compiler.Service.ProjectCracker.Tool.exe ==> lib/net45
16+
../bin/v4.5/FSharp.Compiler.Service.ProjectCracker.Tool.?db ==> lib/net45
17+
../bin/v4.5/FSharp.Compiler.Service.ProjectCracker.Tool.exe.?db ==> lib/net45
1818
../bin/v4.5/FSharp.Compiler.Service.ProjectCracker.dll ==> lib/net45
19-
../bin/v4.5/FSharp.Compiler.Service.ProjectCracker.XML ==> lib/net45
19+
../bin/v4.5/FSharp.Compiler.Service.ProjectCracker.xml ==> lib/net45
2020
../bin/v4.5/FSharp.Compiler.Service.ProjectCracker.?db ==> lib/net45
2121
../bin/v4.5/FSharp.Compiler.Service.ProjectCracker.dll.?db ==> lib/net45

samples/EditorService/EditorService.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<DefineConstants>DEBUG;TRACE</DefineConstants>
2323
<WarningLevel>3</WarningLevel>
2424
<PlatformTarget>AnyCPU</PlatformTarget>
25-
<DocumentationFile>bin\Debug\EditorService.XML</DocumentationFile>
25+
<DocumentationFile>bin\Debug\EditorService.xml</DocumentationFile>
2626
<Prefer32Bit>true</Prefer32Bit>
2727
</PropertyGroup>
2828
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
@@ -33,7 +33,7 @@
3333
<DefineConstants>TRACE</DefineConstants>
3434
<WarningLevel>3</WarningLevel>
3535
<PlatformTarget>AnyCPU</PlatformTarget>
36-
<DocumentationFile>bin\Release\EditorService.XML</DocumentationFile>
36+
<DocumentationFile>bin\Release\EditorService.xml</DocumentationFile>
3737
<Prefer32Bit>true</Prefer32Bit>
3838
</PropertyGroup>
3939
<ItemGroup>

samples/FscExe/Fsc.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<DefineConstants>TRACE;DEBUG</DefineConstants>
2626
<WarningLevel>3</WarningLevel>
2727
<PlatformTarget>AnyCPU</PlatformTarget>
28-
<DocumentationFile>bin\Debug\FsiExe.XML</DocumentationFile>
28+
<DocumentationFile>bin\Debug\FsiExe.xml</DocumentationFile>
2929
<Prefer32Bit>true</Prefer32Bit>
3030
<StartArguments>
3131
</StartArguments>
@@ -38,7 +38,7 @@
3838
<DefineConstants>TRACE</DefineConstants>
3939
<WarningLevel>3</WarningLevel>
4040
<PlatformTarget>AnyCPU</PlatformTarget>
41-
<DocumentationFile>bin\Release\FsiExe.XML</DocumentationFile>
41+
<DocumentationFile>bin\Release\FsiExe.xml</DocumentationFile>
4242
<Prefer32Bit>true</Prefer32Bit>
4343
</PropertyGroup>
4444
<ItemGroup>

samples/FsiExe/FsiExe.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<DefineConstants>TRACE;DEBUG</DefineConstants>
2323
<WarningLevel>3</WarningLevel>
2424
<PlatformTarget>AnyCPU</PlatformTarget>
25-
<DocumentationFile>bin\Debug\FsiExe.XML</DocumentationFile>
25+
<DocumentationFile>bin\Debug\FsiExe.xml</DocumentationFile>
2626
<Prefer32Bit>true</Prefer32Bit>
2727
<StartArguments>
2828
</StartArguments>
@@ -35,7 +35,7 @@
3535
<DefineConstants>TRACE</DefineConstants>
3636
<WarningLevel>3</WarningLevel>
3737
<PlatformTarget>AnyCPU</PlatformTarget>
38-
<DocumentationFile>bin\Release\FsiExe.XML</DocumentationFile>
38+
<DocumentationFile>bin\Release\FsiExe.xml</DocumentationFile>
3939
<Prefer32Bit>true</Prefer32Bit>
4040
</PropertyGroup>
4141
<ItemGroup>

samples/InteractiveService/InteractiveService.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<DefineConstants>DEBUG;TRACE</DefineConstants>
2323
<WarningLevel>3</WarningLevel>
2424
<PlatformTarget>AnyCPU</PlatformTarget>
25-
<DocumentationFile>bin\Debug\InteractiveService.XML</DocumentationFile>
25+
<DocumentationFile>bin\Debug\InteractiveService.xml</DocumentationFile>
2626
<Prefer32Bit>true</Prefer32Bit>
2727
</PropertyGroup>
2828
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
@@ -33,7 +33,7 @@
3333
<DefineConstants>TRACE</DefineConstants>
3434
<WarningLevel>3</WarningLevel>
3535
<PlatformTarget>AnyCPU</PlatformTarget>
36-
<DocumentationFile>bin\Release\InteractiveService.XML</DocumentationFile>
36+
<DocumentationFile>bin\Release\InteractiveService.xml</DocumentationFile>
3737
<Prefer32Bit>true</Prefer32Bit>
3838
</PropertyGroup>
3939
<ItemGroup>

samples/Tokenizer/Tokenizer.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<DefineConstants>DEBUG;TRACE</DefineConstants>
2323
<WarningLevel>3</WarningLevel>
2424
<PlatformTarget>AnyCPU</PlatformTarget>
25-
<DocumentationFile>bin\Debug\Tokenizer.XML</DocumentationFile>
25+
<DocumentationFile>bin\Debug\Tokenizer.xml</DocumentationFile>
2626
<Prefer32Bit>true</Prefer32Bit>
2727
</PropertyGroup>
2828
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
@@ -33,7 +33,7 @@
3333
<DefineConstants>TRACE</DefineConstants>
3434
<WarningLevel>3</WarningLevel>
3535
<PlatformTarget>AnyCPU</PlatformTarget>
36-
<DocumentationFile>bin\Release\Tokenizer.XML</DocumentationFile>
36+
<DocumentationFile>bin\Release\Tokenizer.xml</DocumentationFile>
3737
<Prefer32Bit>true</Prefer32Bit>
3838
</PropertyGroup>
3939
<ItemGroup>

samples/UntypedTree/UntypedTree.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<DefineConstants>DEBUG;TRACE</DefineConstants>
2323
<WarningLevel>3</WarningLevel>
2424
<PlatformTarget>AnyCPU</PlatformTarget>
25-
<DocumentationFile>bin\Debug\UntypedTree.XML</DocumentationFile>
25+
<DocumentationFile>bin\Debug\UntypedTree.xml</DocumentationFile>
2626
<Prefer32Bit>true</Prefer32Bit>
2727
</PropertyGroup>
2828
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
@@ -33,7 +33,7 @@
3333
<DefineConstants>TRACE</DefineConstants>
3434
<WarningLevel>3</WarningLevel>
3535
<PlatformTarget>AnyCPU</PlatformTarget>
36-
<DocumentationFile>bin\Release\UntypedTree.XML</DocumentationFile>
36+
<DocumentationFile>bin\Release\UntypedTree.xml</DocumentationFile>
3737
<Prefer32Bit>true</Prefer32Bit>
3838
</PropertyGroup>
3939
<ItemGroup>

src/fsharp/FSharp.Compiler.Service.ProjectCracker.Tool/FSharp.Compiler.Service.ProjectCracker.Tool.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1919
<Name>FSharp.Compiler.Service.ProjectCracker.Tool</Name>
2020
<OutputPath>..\..\..\bin\$(TargetFrameworkVersion)</OutputPath>
21-
<DocumentationFile>..\..\..\bin\$(TargetFrameworkVersion)\FSharp.Compiler.Service.ProjectCracker.Tool.XML</DocumentationFile>
21+
<DocumentationFile>..\..\..\bin\$(TargetFrameworkVersion)\FSharp.Compiler.Service.ProjectCracker.Tool.xml</DocumentationFile>
2222
</PropertyGroup>
2323
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2424
<DebugSymbols>true</DebugSymbols>

src/fsharp/FSharp.Compiler.Service.ProjectCracker/FSharp.Compiler.Service.ProjectCracker.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<TargetFSharpCoreVersion>4.3.0.0</TargetFSharpCoreVersion>
1515
<Name>FSharp.Compiler.Service.ProjectCracker</Name>
1616
<OutputPath>..\..\..\bin\$(TargetFrameworkVersion)</OutputPath>
17-
<DocumentationFile>..\..\..\bin\$(TargetFrameworkVersion)\FSharp.Compiler.Service.ProjectCracker.XML</DocumentationFile>
17+
<DocumentationFile>..\..\..\bin\$(TargetFrameworkVersion)\FSharp.Compiler.Service.ProjectCracker.xml</DocumentationFile>
1818
</PropertyGroup>
1919
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2020
<DebugSymbols>true</DebugSymbols>
@@ -48,7 +48,7 @@
4848
<Compile Include="ProjectCracker.fs" />
4949
</ItemGroup>
5050
<ItemGroup>
51-
<ProjectReference Include="..\FSharp.Compiler.Service.ProjectCracker.Exe\FSharp.Compiler.Service.ProjectCracker.Tool.fsproj">
51+
<ProjectReference Include="..\FSharp.Compiler.Service.ProjectCracker.Tool\FSharp.Compiler.Service.ProjectCracker.Tool.fsproj">
5252
<Name>FSharp.Compiler.Service.ProjectCracker.Tool</Name>
5353
<Project>{b1bdd96d-47e1-4e65-8107-fbae23a06db4}</Project>
5454
<Private>True</Private>

0 commit comments

Comments
 (0)