Skip to content

Commit b7ec69d

Browse files
committed
add missing test project
1 parent decf64b commit b7ec69d

File tree

4 files changed

+21
-0
lines changed

4 files changed

+21
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<Project>
2+
<!-- leapfrog up one directory -->
3+
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../../'))" />
4+
</Project>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<Project>
2+
<!-- leapfrog up one directory -->
3+
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.targets', '$(MSBuildThisFileDirectory)../../'))" />
4+
</Project>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
namespace Sample_NETCoreSDK_FSharp_Library_netstandard2_0
2+
3+
type Class1() =
4+
member this.X = "F#"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<TargetFramework>netstandard2.0</TargetFramework>
4+
<FSharpCoreImplicitPackageVersion>4.5.*</FSharpCoreImplicitPackageVersion>
5+
</PropertyGroup>
6+
<ItemGroup>
7+
<Compile Include="Library1.fs" />
8+
</ItemGroup>
9+
</Project>

0 commit comments

Comments
 (0)