Skip to content

Commit

Permalink
Precursor for switch from travis to .github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jbtule committed Oct 2, 2019
1 parent 98cd475 commit f6325c8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 39 deletions.
37 changes: 0 additions & 37 deletions .travis.yml

This file was deleted.

5 changes: 5 additions & 0 deletions Directory.build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<Project>
<PropertyGroup>
<WithoutCrossCompile Condition="'$(GITHUB_ACTION)' != '' OR '$(LGTM_SRC)' != ''">True</WithoutCrossCompile>
</PropertyGroup>
</Project>
5 changes: 3 additions & 2 deletions FSharp.Interop.Dynamic/FSharp.Interop.Dynamic.fsproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard1.6;netstandard2.0;net45</TargetFrameworks>
<TargetFrameworks Condition="'$(WithoutCrossCompile)' != ''">netstandard2.0</TargetFrameworks>
<Description>dynamic operator using the DLR</Description>
<Company>Ekon Benefits</Company>
<Authors>Jay Tuley</Authors>
Expand All @@ -20,7 +21,7 @@
<Import Project="../monofx.props" />

<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.4.1" />
<PackageReference Include="Microsoft.CSharp" Version="4.6.0" />
<PackageReference Include="FSharp.Core" Version="4.2.*" />
<PackageReference Include="Dynamitey" Version="2.0.*" />
</ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions Tests/Tests.fsproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netcoreapp1.1;netcoreapp2.0;net46</TargetFrameworks>
<TargetFrameworks Condition="'$(WithoutCrossCompile)' != ''">netcoreapp2.0</TargetFrameworks>
<OutputType>Exe</OutputType>
</PropertyGroup>
<Import Project="../monofx.props" />
Expand Down

0 comments on commit f6325c8

Please sign in to comment.