Skip to content

Commit e80ac82

Browse files
committed
rm F#
1 parent 59f6532 commit e80ac82

File tree

14 files changed

+1
-365
lines changed

14 files changed

+1
-365
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### 3.2.0 (2022-11-29)
66
* [Updated] Update template to target dotnet6
77
* [Updated] Template based on the Worker template, using BackgroundService base class
8+
* [Removed] F# Template
89

910
### 3.1.1 (2021-09-01)
1011
* [Updated] Updated the nuget template json to match the schema

Test/Test.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ public class Test : IClassFixture<DotNetFixture>
2929
{
3030
private DotNetFixture fixture;
3131
private const string CSharp = "C#";
32-
private const string FSharp = "F#";
3332
private const string ArchLinux64 = "linux64";
3433
private const string ArchWindowsNano = "windowsNano";
3534

@@ -49,8 +48,6 @@ private static string BeforeEach(string lang, string repository, bool skipRestor
4948
[Theory]
5049
[InlineData(CSharp, true)]
5150
[InlineData(CSharp, false)]
52-
[InlineData(FSharp, true)]
53-
[InlineData(FSharp, false)]
5451
public void TestArchitecture(string lang, bool skipRestore)
5552
{
5653
var repository = "test.azurecr.io/test";
@@ -70,10 +67,6 @@ public void TestArchitecture(string lang, bool skipRestore)
7067
{
7168
filesToCheck.AddRange(new List<string> { "Program.cs", scaffoldName + ".csproj", "Dockerfile.arm64v8.debug" });
7269
}
73-
if (lang == FSharp)
74-
{
75-
filesToCheck.AddRange(new List<string> { "Program.fs", scaffoldName + ".fsproj" });
76-
}
7770

7871
foreach (var file in filesToCheck)
7972
{

content/dotnet-template-azure-iot-edge-module/FSharp/.dockerignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

content/dotnet-template-azure-iot-edge-module/FSharp/.gitignore

Lines changed: 0 additions & 34 deletions
This file was deleted.

content/dotnet-template-azure-iot-edge-module/FSharp/.template.config/template.json

Lines changed: 0 additions & 55 deletions
This file was deleted.

content/dotnet-template-azure-iot-edge-module/FSharp/Dockerfile.amd64

Lines changed: 0 additions & 17 deletions
This file was deleted.

content/dotnet-template-azure-iot-edge-module/FSharp/Dockerfile.amd64.debug

Lines changed: 0 additions & 24 deletions
This file was deleted.

content/dotnet-template-azure-iot-edge-module/FSharp/Dockerfile.arm32v7

Lines changed: 0 additions & 17 deletions
This file was deleted.

content/dotnet-template-azure-iot-edge-module/FSharp/Dockerfile.arm32v7.debug

Lines changed: 0 additions & 24 deletions
This file was deleted.

content/dotnet-template-azure-iot-edge-module/FSharp/Dockerfile.arm64v8

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)