mirror of
https://github.com/Smaug123/WoofWare.Myriad
synced 2025-10-07 04:58:41 +00:00
33 lines
1.1 KiB
XML
33 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<MyriadSdkGenerator Include="$(MSBuildThisFileDirectory)..\MyriadPlugin\bin\$(Configuration)\net6.0\MyriadPlugin.dll" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="myriad.toml" />
|
|
<Compile Include="RecordFile.fs" />
|
|
<Compile Include="GeneratedRecord.fs"> <!--1-->
|
|
<MyriadFile>RecordFile.fs</MyriadFile> <!--2-->
|
|
</Compile>
|
|
<Compile Include="JsonRecord.fs" />
|
|
<Compile Include="GeneratedJson.fs"> <!--1-->
|
|
<MyriadFile>JsonRecord.fs</MyriadFile> <!--2-->
|
|
</Compile>
|
|
<None Include="..\runmyriad.sh">
|
|
<Link>runmyriad.sh</Link>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MyriadPlugin\MyriadPlugin.fsproj" />
|
|
<PackageReference Include="Myriad.Sdk" Version="0.8.3" />
|
|
<PackageReference Include="Myriad.Core" Version="0.8.3" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|