068ba16156
3 Schichten Model umgesetzt
28 lines
674 B
XML
28 lines
674 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<RootNamespace>bib_talk</RootNamespace>
|
|
<Nullable>enable</Nullable>
|
|
<UseWPF>true</UseWPF>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="logo.png" />
|
|
<None Remove="Logo_bib-Talk.png" />
|
|
<None Remove="PICA.jpg" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Resource Include="Icons\logo.png" />
|
|
<Resource Include="Icons\Logo_bib-Talk.png" />
|
|
<Resource Include="Icons\PICA.jpg" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|