34 lines
1021 B
XML
34 lines
1021 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<NuGetAuditMode>all</NuGetAuditMode>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Result.fs" />
|
|
<Compile Include="Exception.fs" />
|
|
<Compile Include="ArgsCrate.fs" />
|
|
<Compile Include="AuthArg.fs" />
|
|
<Compile Include="Authenticate.fs" />
|
|
<Compile Include="Fullness.fs" />
|
|
<Compile Include="LookupGym.fs" />
|
|
<Compile Include="AllGyms.fs" />
|
|
<Compile Include="MemberActivity.fs" />
|
|
<Compile Include="Sessions.fs" />
|
|
<Compile Include="Program.fs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\PureGym\PureGym.fsproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Argu" Version="6.2.5" />
|
|
<PackageReference Include="System.Text.Json" Version="9.0.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|