1
|
<Project Sdk="Microsoft.NET.Sdk">
|
2
|
|
3
|
<PropertyGroup>
|
4
|
<OutputType>Exe</OutputType>
|
5
|
<TargetFramework>net5.0</TargetFramework>
|
6
|
<Authors>Tři Mušketýři</Authors>
|
7
|
<Company>University of West Bohemia</Company>
|
8
|
</PropertyGroup>
|
9
|
|
10
|
<ItemGroup>
|
11
|
<PackageReference Include="log4net" Version="2.0.12" />
|
12
|
<PackageReference Include="Microsoft.ML" Version="1.5.5" />
|
13
|
</ItemGroup>
|
14
|
|
15
|
<ItemGroup>
|
16
|
<Compile Update="Properties\Resources.Designer.cs">
|
17
|
<DesignTime>True</DesignTime>
|
18
|
<AutoGen>True</AutoGen>
|
19
|
<DependentUpon>Resources.resx</DependentUpon>
|
20
|
</Compile>
|
21
|
</ItemGroup>
|
22
|
|
23
|
<ItemGroup>
|
24
|
<EmbeddedResource Update="Properties\Resources.resx">
|
25
|
<Generator>ResXFileCodeGenerator</Generator>
|
26
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
27
|
</EmbeddedResource>
|
28
|
</ItemGroup>
|
29
|
|
30
|
<!--<ItemGroup>
|
31
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
|
32
|
<_Parameter1>ServerAppUnitTests</_Parameter1>
|
33
|
--><!-- We use the value of AssemblyName to declare the value of the attribute --><!--
|
34
|
</AssemblyAttribute>
|
35
|
</ItemGroup>-->
|
36
|
|
37
|
</Project>
|