Adding all tracks, I guess
This commit is contained in:
3
fsharp/hello-world/HelloWorld.fs
Normal file
3
fsharp/hello-world/HelloWorld.fs
Normal file
@@ -0,0 +1,3 @@
|
||||
module HelloWorld
|
||||
|
||||
let hello: string = failwith "You need to implement this function."
|
23
fsharp/hello-world/HelloWorld.fsproj
Normal file
23
fsharp/hello-world/HelloWorld.fsproj
Normal file
@@ -0,0 +1,23 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
||||
|
||||
<IsPackable>false</IsPackable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Include="HelloWorld.fs" />
|
||||
<Compile Include="HelloWorldTest.fs" />
|
||||
<Compile Include="Program.fs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" />
|
||||
<PackageReference Include="xunit" Version="2.3.1" />
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
|
||||
<PackageReference Include="FsUnit.xUnit" Version="3.1.0" />
|
||||
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
1
fsharp/hello-world/Program.fs
Normal file
1
fsharp/hello-world/Program.fs
Normal file
@@ -0,0 +1 @@
|
||||
module Program = let [<EntryPoint>] main _ = 0
|
Reference in New Issue
Block a user