mirror of
https://github.com/rfvgyhn/min-ed-launcher.git
synced 2025-10-30 03:59:00 +00:00
47 lines
1.8 KiB
XML
47 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<GenerateProgramFile>false</GenerateProgramFile>
|
|
<Configurations>Debug;Release;ReleaseWindows</Configurations>
|
|
<Platforms>AnyCPU</Platforms>
|
|
<RootNamespace>EdLauncher.Tests</RootNamespace>
|
|
<LangVersion>preview</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'ReleaseWindows' ">
|
|
<Optimize Condition=" '$(Optimize)' == '' ">true</Optimize>
|
|
<DebugSymbols Condition="'$(DebugSymbols)' == '' ">false</DebugSymbols>
|
|
<Optimize Condition="'$(Optimize)' == '' ">true</Optimize>
|
|
<Tailcalls Condition="'$(Tailcalls)' == '' ">true</Tailcalls>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Extensions.fs" />
|
|
<Compile Include="Settings.fs" />
|
|
<Compile Include="Product.fs" />
|
|
<Compile Include="Process.fs" />
|
|
<Compile Include="EdLauncher.fs" />
|
|
<Compile Include="Github.fs" />
|
|
<Compile Include="MachineId.fs" />
|
|
<Compile Include="AuthorizedProduct.fs" />
|
|
<Compile Include="Cobra.fs" />
|
|
<Compile Include="Legendary.fs" />
|
|
<Compile Include="Main.fs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Expecto" Version="10.2.1" />
|
|
<PackageReference Include="Expecto.FsCheck" Version="10.2.1" />
|
|
<PackageReference Include="Microsoft.Extensions.TimeProvider.Testing" Version="8.5.0" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
|
|
<PackageReference Include="YoloDev.Expecto.TestSdk" Version="0.14.3" />
|
|
<PackageReference Update="FSharp.Core" Version="8.0.200" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\src\MinEdLauncher\MinEdLauncher.fsproj" />
|
|
</ItemGroup>
|
|
</Project>
|