2020-05-01 14:25:32 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-04-30 08:37:15 +00:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
|
<OutputPath>..\..\Output\Debug\Plugins\HelloWorldFSharp\</OutputPath>
|
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
|
<OutputPath>..\..\Output\Release\Plugins\HelloWorldFSharp\</OutputPath>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-05-01 14:25:32 +00:00
|
|
|
|
<Content Include="Images\app.png">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
2020-04-30 08:37:15 +00:00
|
|
|
|
<Content Include="plugin.json">
|
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
|
</Content>
|
|
|
|
|
|
<Compile Include="Main.fs" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\..\Flow.Launcher.Plugin\Flow.Launcher.Plugin.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-05-02 11:13:20 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Update="FSharp.Core" Version="4.7.1" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-04-30 08:37:15 +00:00
|
|
|
|
</Project>
|