obsidian-sample-plugin-f-sharp/obsidian-sample-plugin-fs.fsproj

23 lines
708 B
XML
Raw Normal View History

2023-07-08 21:47:52 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>obsidian_sample_plugin_fs</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Include="Obsidian.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Fable.Browser.Css" Version="2.3.0" />
<PackageReference Include="Fable.Browser.Dom" Version="2.14.0" />
<PackageReference Include="Fable.Browser.XMLHttpRequest" Version="1.3.0" />
<PackageReference Include="Fable.Core" Version="4.0.0" />
<PackageReference Include="Fable.Promise" Version="3.2.0" />
</ItemGroup>
</Project>