Projekt

Obecné

Profil

Stáhnout (1.31 KB) Statistiky
| Větev: | Tag: | Revize:
1 b8b5af05 Roman Kalivoda
<Project Sdk="Microsoft.NET.Sdk">
2 5e6dbc33 Roman Kalivoda
3 b8b5af05 Roman Kalivoda
    <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 5e6dbc33 Roman Kalivoda
10 b8b5af05 Roman Kalivoda
    <ItemGroup>
11 0d31f7e0 Roman Kalivoda
        <PackageReference Include="log4net" Version="2.0.12" />
12 b8b5af05 Roman Kalivoda
        <PackageReference Include="Microsoft.ML" Version="1.5.5" />
13 0060a0ae Roman Kalivoda
        <PackageReference Include="Microsoft.ML.TimeSeries" Version="1.5.5" />
14 b8b5af05 Roman Kalivoda
    </ItemGroup>
15
16
    <ItemGroup>
17
        <Compile Update="Properties\Resources.Designer.cs">
18
            <DesignTime>True</DesignTime>
19
            <AutoGen>True</AutoGen>
20
            <DependentUpon>Resources.resx</DependentUpon>
21
        </Compile>
22
    </ItemGroup>
23
24
    <ItemGroup>
25
        <EmbeddedResource Update="Properties\Resources.resx">
26
            <Generator>ResXFileCodeGenerator</Generator>
27
            <LastGenOutput>Resources.Designer.cs</LastGenOutput>
28
        </EmbeddedResource>
29
    </ItemGroup>
30
31 0d31f7e0 Roman Kalivoda
    <!--<ItemGroup>
32 b8b5af05 Roman Kalivoda
        <AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
33
            <_Parameter1>ServerAppUnitTests</_Parameter1>
34 0d31f7e0 Roman Kalivoda
            --><!-- We use the value of AssemblyName to declare the value of the attribute --><!--
35 b8b5af05 Roman Kalivoda
        </AssemblyAttribute>
36 0d31f7e0 Roman Kalivoda
    </ItemGroup>-->
37 5e6dbc33 Roman Kalivoda
38
</Project>