Skip to content

Commit 371495b

Browse files
committed
Merge pull request #38 from rneatherway/rename-fsautocomplete
Rename FSharp.AutoComplete -> FsAutoComplete
2 parents b7a9d70 + 75817a6 commit 371495b

File tree

103 files changed

+40
-41
lines changed

Some content is hidden

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

103 files changed

+40
-41
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ pack/*
2121
lib/NUnit*
2222
lib/FsUnit
2323

24-
FSharp.AutoComplete/test/unit/build
2524
packages
2625
.paket/paket.exe
2726

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".paket", ".paket", "{1BE8AF
1010
EndProject
1111
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "FSharp.CompilerBinding", "FSharp.CompilerBinding\FSharp.CompilerBinding.fsproj", "{88F6940F-D300-474C-B2A7-E2ECD5B04B57}"
1212
EndProject
13-
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "FSharp.AutoComplete", "FSharp.AutoComplete\FSharp.AutoComplete.fsproj", "{B6AB4EF3-8F60-41A1-AB0C-851A6DEB169E}"
13+
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "FsAutoComplete", "FsAutoComplete\FsAutoComplete.fsproj", "{B6AB4EF3-8F60-41A1-AB0C-851A6DEB169E}"
1414
EndProject
1515
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "FSharp.CompilerBinding.Tests", "FSharp.CompilerBinding.Tests\FSharp.CompilerBinding.Tests.fsproj", "{F5EBDD99-5ED7-4311-A5CB-7CFCE696FF88}"
1616
EndProject
@@ -37,6 +37,6 @@ Global
3737
HideSolutionNode = FALSE
3838
EndGlobalSection
3939
GlobalSection(MonoDevelopProperties) = preSolution
40-
StartupItem = FSharp.AutoComplete\FSharp.AutoComplete.fsproj
40+
StartupItem = FsAutoComplete\FsAutoComplete.fsproj
4141
EndGlobalSection
4242
EndGlobal
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
namespace System
22
open System.Reflection
33

4-
[<assembly: AssemblyTitleAttribute("FSharp.AutoComplete")>]
5-
[<assembly: AssemblyProductAttribute("FSharp.AutoComplete")>]
4+
[<assembly: AssemblyTitleAttribute("FsAutoComplete")>]
5+
[<assembly: AssemblyProductAttribute("FsAutoComplete")>]
66
[<assembly: AssemblyDescriptionAttribute("A command line tool for interfacing with FSharp.Compiler.Service over a pipe.")>]
77
[<assembly: AssemblyVersionAttribute("0.19.0")>]
88
[<assembly: AssemblyFileVersionAttribute("0.19.0")>]

FSharp.AutoComplete/FSharp.AutoComplete.fsproj renamed to FsAutoComplete/FsAutoComplete.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<SchemaVersion>2.0</SchemaVersion>
88
<ProjectGuid>{B6AB4EF3-8F60-41A1-AB0C-851A6DEB169E}</ProjectGuid>
99
<OutputType>Exe</OutputType>
10-
<RootNamespace>FSharp.AutoComplete</RootNamespace>
10+
<RootNamespace>FsAutoComplete</RootNamespace>
1111
<AssemblyName>fsautocomplete</AssemblyName>
1212
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1313
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
@@ -61,7 +61,7 @@
6161
<Compile Include="Options.fs" />
6262
<Compile Include="TipFormatter.fs" />
6363
<Compile Include="Program.fs" />
64-
<None Include="FSharp.AutoComplete.fsproj.paket.references" />
64+
<None Include="FsAutoComplete.fsproj.paket.references" />
6565
<None Include="build.fsx" />
6666
</ItemGroup>
6767
<ItemGroup>

FSharp.AutoComplete/FSharp.AutoComplete.fsproj.paket.references renamed to FsAutoComplete/FsAutoComplete.fsproj.paket.references

File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ open System.Diagnostics
88
open System.Reflection
99

1010
module Version =
11-
let string = "FSharp.AutoComplete " + AssemblyVersionInformation.Version
11+
let string = "FsAutoComplete " + AssemblyVersionInformation.Version
1212

1313
module Options =
1414

0 commit comments

Comments
 (0)