Skip to content

Commit 48cf922

Browse files
author
Tim Forkmann
committed
Bumping version to 1.0.1
1 parent c5aaab1 commit 48cf922

File tree

10 files changed

+544
-524
lines changed

10 files changed

+544
-524
lines changed

.config/dotnet-tools.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"paket": {
6-
"version": "8.0.0",
6+
"version": "9.0.0",
77
"commands": [
88
"paket"
99
],
@@ -31,4 +31,4 @@
3131
"rollForward": false
3232
}
3333
}
34-
}
34+
}

.paket/Paket.Restore.targets

Lines changed: 505 additions & 497 deletions
Large diffs are not rendered by default.

Build.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
</PropertyGroup>
66
<ItemGroup>
77
<Compile Include="Helpers.fs" />

Build.sln

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 25.0.1706.14
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Build", "Build.fsproj", "{DA88461F-7743-46FA-A054-BC08AA7D3C49}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{DA88461F-7743-46FA-A054-BC08AA7D3C49}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{DA88461F-7743-46FA-A054-BC08AA7D3C49}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{DA88461F-7743-46FA-A054-BC08AA7D3C49}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{DA88461F-7743-46FA-A054-BC08AA7D3C49}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {DDA59E44-0A74-4E6E-B219-01150F2139FC}
24+
EndGlobalSection
25+
EndGlobal

Feliz.ChartJS.sln

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Docs", "src\Docs\Docs.fspro
44
EndProject
55
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Feliz.ChartJS", "src\Feliz.ChartJS\Feliz.ChartJS.fsproj", "{3F7A6B8B-594C-4E1B-8374-722B2B3D8342}"
66
EndProject
7-
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Client", "src\Client\Client.fsproj", "{3F7A6B8B-594C-4E1B-8374-722B2B3D8342}"
7+
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Client", "src\Client\Client.fsproj", "{C8EE7A0E-8F3D-4468-8652-0EA49EC01690}"
88
EndProject
99
Global
1010
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -20,6 +20,10 @@ Global
2020
{3F7A6B8B-594C-4E1B-8374-722B2B3D8342}.Debug|Any CPU.Build.0 = Debug|Any CPU
2121
{3F7A6B8B-594C-4E1B-8374-722B2B3D8342}.Release|Any CPU.ActiveCfg = Release|Any CPU
2222
{3F7A6B8B-594C-4E1B-8374-722B2B3D8342}.Release|Any CPU.Build.0 = Release|Any CPU
23+
{C8EE7A0E-8F3D-4468-8652-0EA49EC01690}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
24+
{C8EE7A0E-8F3D-4468-8652-0EA49EC01690}.Debug|Any CPU.Build.0 = Debug|Any CPU
25+
{C8EE7A0E-8F3D-4468-8652-0EA49EC01690}.Release|Any CPU.ActiveCfg = Release|Any CPU
26+
{C8EE7A0E-8F3D-4468-8652-0EA49EC01690}.Release|Any CPU.Build.0 = Release|Any CPU
2327
EndGlobalSection
2428
GlobalSection(NestedProjects) = preSolution
2529
EndGlobalSection

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "8.0.400",
3+
"version": "9.0.200",
44
"rollForward": "latestMinor"
55
}
66
}

paket.dependencies

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
source https://api.nuget.org/v3/index.json
2-
framework: net8.0
2+
framework: net9.0
33
storage: none
44

55
nuget Expecto
@@ -19,6 +19,7 @@ nuget Fake.DotNet.Cli
1919
nuget Fake.Core.ReleaseNotes
2020
nuget Fake.Tools.Git
2121
nuget Fake.Core.UserInput
22+
2223
group Package
2324
source https://api.nuget.org/v3/index.json
2425
framework: netstandard2.0

paket.lock

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
STORAGE: NONE
2-
RESTRICTION: == net8.0
2+
RESTRICTION: == net9.0
33
NUGET
44
remote: https://api.nuget.org/v3/index.json
55
BlackFox.VsWhere (1.1)
@@ -202,26 +202,13 @@ NUGET
202202
FSharp.Core (>= 6.0.7)
203203
System.Reactive (>= 6.0.1)
204204
FSharp.Core (9.0.201)
205-
Microsoft.Bcl.Cryptography (9.0.3)
206-
System.Formats.Asn1 (>= 9.0.3)
207205
Microsoft.Build.Framework (17.13.9)
208-
Microsoft.Win32.Registry (>= 5.0)
209-
System.Memory (>= 4.5.5)
210-
System.Runtime.CompilerServices.Unsafe (>= 6.0)
211-
System.Security.Principal.Windows (>= 5.0)
212206
Microsoft.Build.Utilities.Core (17.13.9)
213207
Microsoft.Build.Framework (>= 17.13.9)
214208
Microsoft.NET.StringTools (>= 17.13.9)
215-
Microsoft.Win32.Registry (>= 5.0)
216209
System.Collections.Immutable (>= 8.0)
217210
System.Configuration.ConfigurationManager (>= 8.0)
218-
System.Memory (>= 4.5.5)
219-
System.Runtime.CompilerServices.Unsafe (>= 6.0)
220-
System.Security.Principal.Windows (>= 5.0)
221-
System.Text.Encoding.CodePages (>= 7.0)
222211
Microsoft.NET.StringTools (17.13.9)
223-
System.Memory (>= 4.5.5)
224-
System.Runtime.CompilerServices.Unsafe (>= 6.0)
225212
Microsoft.Win32.Registry (5.0)
226213
System.Security.AccessControl (>= 5.0)
227214
System.Security.Principal.Windows (>= 5.0)
@@ -254,16 +241,11 @@ NUGET
254241
System.Security.Cryptography.ProtectedData (>= 9.0.3)
255242
System.Diagnostics.EventLog (9.0.3)
256243
System.Formats.Asn1 (9.0.3)
257-
System.Memory (4.6)
258244
System.Reactive (6.0.1)
259-
System.Runtime.CompilerServices.Unsafe (6.1)
260245
System.Security.AccessControl (6.0.1)
261246
System.Security.Cryptography.Pkcs (9.0.3)
262-
Microsoft.Bcl.Cryptography (>= 9.0.3)
263-
System.Formats.Asn1 (>= 9.0.3)
264247
System.Security.Cryptography.ProtectedData (9.0.3)
265248
System.Security.Principal.Windows (5.0)
266-
System.Text.Encoding.CodePages (9.0.3)
267249
Thoth.Json (10.4.1)
268250
Fable.Core (>= 4.1)
269251
FSharp.Core (>= 5.0.2)

src/Client/Client.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<DefineConstants>FABLE_COMPILER</DefineConstants>
66
</PropertyGroup>
77
<ItemGroup>

src/Docs/Docs.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
</PropertyGroup>
66
<ItemGroup>
77
<Compile Include="Router.fs" />

0 commit comments

Comments
 (0)