2020-11-15 11:14:42 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
2020-12-07 19:19:28 +02:00
|
|
|
<!--
|
|
|
|
to resolve error in Microsoft.PackageDependencyResolution.targets about
|
|
|
|
Assets file 'project.assets.json' doesn't have a target for 'net461'
|
|
|
|
make sure you use the latest nuget.exe, or at least version 5.8.0
|
|
|
|
-->
|
|
|
|
|
2020-11-15 11:14:42 +02:00
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
<TargetFramework>net461</TargetFramework>
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
<OutputPath>..\..\.obj\Demo1\$(Configuration)\</OutputPath>
|
|
|
|
<IntermediateOutputPath>$(OutputPath)\Intermediate</IntermediateOutputPath>
|
|
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
|
|
<Platforms>AnyCPU;x86</Platforms>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
|
|
<Compile Include="Library1.fs" />
|
|
|
|
|
2020-12-07 19:19:28 +02:00
|
|
|
<PackageReference Include="FSharp.Core" Version="4.7.0" />
|
|
|
|
<PackageReference Update="FSharp.Core" Version="4.7.0" />
|
|
|
|
|
2020-11-15 11:14:42 +02:00
|
|
|
<Reference Include="Microsoft.Xna.Framework">
|
|
|
|
<HintPath>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.dll</HintPath>
|
|
|
|
</Reference>
|
|
|
|
|
|
|
|
<Reference Include="Microsoft.Xna.Framework.Game">
|
|
|
|
<HintPath>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Game.dll</HintPath>
|
|
|
|
</Reference>
|
|
|
|
|
|
|
|
<Reference Include="Microsoft.Xna.Framework.Graphics">
|
|
|
|
<HintPath>C:\Program Files (x86)\Microsoft XNA\XNA Game Studio\v4.0\References\Windows\x86\Microsoft.Xna.Framework.Graphics.dll</HintPath>
|
|
|
|
</Reference>
|
|
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
</Project>
|