Skip to content

Commit a90527d

Browse files
committed
completed rename to DependentTypes
1 parent b7fd909 commit a90527d

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".paket", ".paket", "{63297B
99
EndProject
1010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{A6A6AF7D-D6E3-442D-9B1E-58CC91879BE1}"
1111
EndProject
12-
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "BoundedStrings", "src\BoundedStrings\BoundedStrings.fsproj", "{11C1A07D-FB17-4ECB-BADA-32E8E0933C5B}"
12+
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "DependentTypes", "src\DependentTypes\DependentTypes.fsproj", "{11C1A07D-FB17-4ECB-BADA-32E8E0933C5B}"
1313
EndProject
1414
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "project", "project", "{BF60BC93-E09B-4E5F-9D85-95A519479D54}"
1515
ProjectSection(SolutionItems) = preProject
@@ -32,7 +32,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "content", "content", "{8E6D
3232
EndProject
3333
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{ED8079DD-2B06-4030-9F0F-DC548F98E1C4}"
3434
EndProject
35-
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "BoundedStrings.Tests", "tests\BoundedStrings.Tests\BoundedStrings.Tests.fsproj", "{385D1636-D293-4DAF-9AA4-70D867B836AD}"
35+
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "DependentTypes.Tests", "tests\DependentTypes.Tests\DependentTypes.Tests.fsproj", "{385D1636-D293-4DAF-9AA4-70D867B836AD}"
3636
EndProject
3737
Global
3838
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
namespace System
22
open System.Reflection
33

4-
[<assembly: AssemblyTitleAttribute("BoundedStrings")>]
4+
[<assembly: AssemblyTitleAttribute("DependentTypes")>]
55
[<assembly: AssemblyProductAttribute("BoundedStrings")>]
66
[<assembly: AssemblyDescriptionAttribute("type provider for bounded strings")>]
77
[<assembly: AssemblyVersionAttribute("1.0")>]
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
@@ -7,11 +7,11 @@
77
<SchemaVersion>2.0</SchemaVersion>
88
<ProjectGuid>11c1a07d-fb17-4ecb-bada-32e8e0933c5b</ProjectGuid>
99
<OutputType>Library</OutputType>
10-
<RootNamespace>BoundedStrings</RootNamespace>
11-
<AssemblyName>BoundedStrings</AssemblyName>
10+
<RootNamespace>FSharp.DependentTyping</RootNamespace>
11+
<AssemblyName>DependentTypes</AssemblyName>
1212
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1313
<TargetFSharpCoreVersion>4.3.0.0</TargetFSharpCoreVersion>
14-
<Name>BoundedStrings</Name>
14+
<Name>DependentTypes</Name>
1515
<TargetFrameworkProfile />
1616
</PropertyGroup>
1717
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
@@ -31,7 +31,7 @@
3131
<OutputPath>.\bin\Release</OutputPath>
3232
<DefineConstants>TRACE</DefineConstants>
3333
<WarningLevel>3</WarningLevel>
34-
<DocumentationFile>.\bin\Release\BoundedStrings.xml</DocumentationFile>
34+
<DocumentationFile>.\bin\Release\DependentTypes.xml</DocumentationFile>
3535
<OtherFlags>--warnon:1182</OtherFlags>
3636
</PropertyGroup>
3737
<ItemGroup>
@@ -97,4 +97,4 @@
9797
</Target>
9898
-->
9999
<Import Project="..\..\.paket\paket.targets" />
100-
</Project>
100+
</Project>
File renamed without changes.
File renamed without changes.

tests/BoundedStrings.Tests/BoundedStrings.Tests.fsproj renamed to tests/DependentTypes.Tests/DependentTypes.Tests.fsproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
<SchemaVersion>2.0</SchemaVersion>
88
<ProjectGuid>385d1636-d293-4daf-9aa4-70d867b836ad</ProjectGuid>
99
<OutputType>Library</OutputType>
10-
<RootNamespace>BoundedStrings.Tests</RootNamespace>
11-
<AssemblyName>BoundedStrings.Tests</AssemblyName>
10+
<RootNamespace>DependentTypes.Tests</RootNamespace>
11+
<AssemblyName>DependentTypes.Tests</AssemblyName>
1212
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1313
<TargetFSharpCoreVersion>4.3.0.0</TargetFSharpCoreVersion>
14-
<Name>BoundedStrings.Tests</Name>
14+
<Name>DependentTypes.Tests</Name>
1515
<TargetFrameworkProfile />
1616
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
1717
</PropertyGroup>
@@ -68,8 +68,8 @@
6868
<Reference Include="System.Numerics" />
6969
</ItemGroup>
7070
<ItemGroup>
71-
<ProjectReference Include="..\..\src\BoundedStrings\BoundedStrings.fsproj">
72-
<Name>BoundedStrings</Name>
71+
<ProjectReference Include="..\..\src\DependentTypes\DependentTypes.fsproj">
72+
<Name>DependentTypes</Name>
7373
<Project>{11c1a07d-fb17-4ecb-bada-32e8e0933c5b}</Project>
7474
<Private>True</Private>
7575
</ProjectReference>
File renamed without changes.

0 commit comments

Comments
 (0)