Projekt

Obecné

Profil

Stáhnout (1.16 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
        <PackageReference Include="Microsoft.ML" Version="1.5.5" />
12
    </ItemGroup>
13
14
    <ItemGroup>
15
        <Compile Update="Properties\Resources.Designer.cs">
16
            <DesignTime>True</DesignTime>
17
            <AutoGen>True</AutoGen>
18
            <DependentUpon>Resources.resx</DependentUpon>
19
        </Compile>
20
    </ItemGroup>
21
22
    <ItemGroup>
23
        <EmbeddedResource Update="Properties\Resources.resx">
24
            <Generator>ResXFileCodeGenerator</Generator>
25
            <LastGenOutput>Resources.Designer.cs</LastGenOutput>
26
        </EmbeddedResource>
27
    </ItemGroup>
28
29
    <ItemGroup>
30
        <AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
31
            <_Parameter1>ServerAppUnitTests</_Parameter1>
32
            <!-- We use the value of AssemblyName to declare the value of the attribute -->
33
        </AssemblyAttribute>
34
    </ItemGroup>
35 5e6dbc33 Roman Kalivoda
36
</Project>