Skip to content

Commit 31d6a35

Browse files
committedFeb 13, 2025·
fix csharp namespace
1 parent 2c337e9 commit 31d6a35

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
 

‎ApiStub.FSharp/ApiStub.FSharp.fsproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<TargetFramework>net6.0</TargetFramework>
44
<GenerateDocumentationFile>true</GenerateDocumentationFile>
55
<PackageId>ApiStub.FSharp</PackageId>
6-
<Version>1.1.0</Version>
6+
<Version>1.2.0</Version>
77
<Authors>jkone27</Authors>
88
<RequireLicenseAcceptance>false</RequireLicenseAcceptance>
99
<PackageLicenseExpression>MIT</PackageLicenseExpression>

‎ApiStub.FSharp/Csharp.fs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace ApiStub.Fsharp
1+
namespace ApiStub.Fsharp.CSharp
22

33
open System.Runtime.CompilerServices
44
open ApiStub.FSharp.CE

‎Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
33
<RepositoryUrl>https://github.com/jkone27/fsharp-integration-tests</RepositoryUrl>
4-
<FsDocsLicenseLink>https://github.com/jkone27/fsharp-integration-tests/blob/master/License</FsDocsLicenseLink>
4+
<FsDocsLicenseLink>https://raw.githubusercontent.com/jkone27/fsharp-integration-tests/refs/heads/main/LICENSE</FsDocsLicenseLink>
55
<FsDocsReleaseNotesLink>https://github.com/jkone27/fsharp-integration-tests/blob/master/RELEASE_NOTES.md</FsDocsReleaseNotesLink>
66
<PackageProjectUrl>https://github.com/jkone27/fsharp-integration-tests</PackageProjectUrl>
77
</PropertyGroup>

‎samples/web/test/Web.Sample.Csharp.Test/CSharpTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using System.Net.Http.Json;
88
using Microsoft.AspNetCore.Mvc.Testing;
99
using static ApiStub.FSharp.CE;
10-
using static ApiStub.Fsharp.CsharpExtensions;
10+
using static ApiStub.Fsharp.CSharp.CsharpExtensions;
1111

1212
public class CSharpTests
1313
{

0 commit comments

Comments
 (0)
Please sign in to comment.