28 lines
998 B
XML
28 lines
998 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
<RootNamespace>Degenz</RootNamespace>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Content Include="Items.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="paket.references" />
|
|
<Compile Include="GameConfig.fs" />
|
|
<Compile Include="GuildEnvironment.fs" />
|
|
<Compile Include="Embeds.fs" />
|
|
<Compile Include="Store.fs" />
|
|
<Compile Include="Trainer.fs" />
|
|
<Compile Include="HackerBattle.fs" />
|
|
<Compile Include="SlotMachine.fs" />
|
|
<Compile Include="PlayerInteractions.fs" />
|
|
<Compile Include="Bot.fs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DbService\DbService.fsproj" />
|
|
</ItemGroup>
|
|
<Import Project="..\.paket\Paket.Restore.targets" />
|
|
</Project> |