Projekt

Obecné

Profil

« Předchozí | Další » 

Revize cb0b7cb9

Přidáno uživatelem Alex Konig před téměř 4 roky(ů)

re #8683 Fixing project dependencies problems

Zobrazit rozdíly:

Server/ServerApp.sln
3 3
# Visual Studio Version 16
4 4
VisualStudioVersion = 16.0.31105.61
5 5
MinimumVisualStudioVersion = 10.0.40219.1
6
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ServerApp", "ServerApp\ServerApp.csproj", "{B49B2821-751C-4032-8637-B4E9282DCF06}"
6
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ServerApp", "ServerApp\ServerApp.csproj", "{18FCFB20-B860-4147-8E7C-8A0DD84C55D4}"
7 7
EndProject
8 8
Global
9 9
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
......
13 13
		Release|x64 = Release|x64
14 14
	EndGlobalSection
15 15
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
16
		{B49B2821-751C-4032-8637-B4E9282DCF06}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17
		{B49B2821-751C-4032-8637-B4E9282DCF06}.Debug|Any CPU.Build.0 = Debug|Any CPU
18
		{B49B2821-751C-4032-8637-B4E9282DCF06}.Debug|x64.ActiveCfg = Debug|x64
19
		{B49B2821-751C-4032-8637-B4E9282DCF06}.Debug|x64.Build.0 = Debug|x64
20
		{B49B2821-751C-4032-8637-B4E9282DCF06}.Release|Any CPU.ActiveCfg = Release|Any CPU
21
		{B49B2821-751C-4032-8637-B4E9282DCF06}.Release|Any CPU.Build.0 = Release|Any CPU
22
		{B49B2821-751C-4032-8637-B4E9282DCF06}.Release|x64.ActiveCfg = Release|x64
23
		{B49B2821-751C-4032-8637-B4E9282DCF06}.Release|x64.Build.0 = Release|x64
16
		{18FCFB20-B860-4147-8E7C-8A0DD84C55D4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17
		{18FCFB20-B860-4147-8E7C-8A0DD84C55D4}.Debug|Any CPU.Build.0 = Debug|Any CPU
18
		{18FCFB20-B860-4147-8E7C-8A0DD84C55D4}.Debug|x64.ActiveCfg = Debug|x64
19
		{18FCFB20-B860-4147-8E7C-8A0DD84C55D4}.Debug|x64.Build.0 = Debug|x64
20
		{18FCFB20-B860-4147-8E7C-8A0DD84C55D4}.Release|Any CPU.ActiveCfg = Release|Any CPU
21
		{18FCFB20-B860-4147-8E7C-8A0DD84C55D4}.Release|Any CPU.Build.0 = Release|Any CPU
22
		{18FCFB20-B860-4147-8E7C-8A0DD84C55D4}.Release|x64.ActiveCfg = Release|x64
23
		{18FCFB20-B860-4147-8E7C-8A0DD84C55D4}.Release|x64.Build.0 = Release|x64
24 24
	EndGlobalSection
25 25
	GlobalSection(SolutionProperties) = preSolution
26 26
		HideSolutionNode = FALSE
27 27
	EndGlobalSection
28 28
	GlobalSection(ExtensibilityGlobals) = postSolution
29
		SolutionGuid = {CF3D6A57-E659-4E12-884C-6346F59A3735}
29
		SolutionGuid = {93738D2E-8EB0-49A3-8335-3B0789068B98}
30 30
	EndGlobalSection
31 31
EndGlobal
Server/ServerApp/App.config
1
<?xml version="1.0" encoding="utf-8" ?>
1
<?xml version="1.0" encoding="utf-8"?>
2 2
<configuration>
3 3
    <startup> 
4 4
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
5 5
    </startup>
6
  <runtime>
7
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
8
      <dependentAssembly>
9
        <assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
10
        <bindingRedirect oldVersion="0.0.0.0-4.0.4.1" newVersion="4.0.4.1" />
11
      </dependentAssembly>
12
      <dependentAssembly>
13
        <assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
14
        <bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
15
      </dependentAssembly>
16
    </assemblyBinding>
17
  </runtime>
6 18
</configuration>
Server/ServerApp/Parser/Parsers/CsvParser.cs
1 1
using Parser.OutputInfo;
2
using ServerApp.Parser.InputData;
3
using ServerApp.Parser.OutputInfo;
4
using ServerApp.Parser.Parsers;
2 5
using System;
3 6
using System.Collections.Generic;
4 7
using System.Globalization;
......
15 18
        LogInParser loginParser;
16 19

  
17 20
        public List<WeatherInfo> weatherList;
18
        public List<JisInfo> jisList;
19
        public List<LogInInfo> loginList;
21
        public List<ActivityInfo> jisList;
22
        public List<ActivityInfo> loginList;
20 23

  
21 24
        public CsvParser()
22 25
        {
23 26
            TagInfo.CreateDictionaries();
24 27
            path = "data/";
25 28

  
26
            weatherParser = new WeatherParser();
27
            jisParser = new JisParser();
28
            loginParser = new LogInParser();
29
            CsvDataLoader loader = new CsvDataLoader();
30

  
31
            weatherParser = new WeatherParser(loader);
32
            jisParser = new JisParser(loader);
33
            loginParser = new LogInParser(loader);
29 34
        }
30 35

  
31 36
        public void Parse()
Server/ServerApp/Properties/AssemblyInfo.cs
20 20
[assembly: ComVisible(false)]
21 21

  
22 22
// The following GUID is for the ID of the typelib if this project is exposed to COM
23
[assembly: Guid("b49b2821-751c-4032-8637-b4e9282dcf06")]
23
[assembly: Guid("18fcfb20-b860-4147-8e7c-8a0dd84c55d4")]
24 24

  
25 25
// Version information for an assembly consists of the following four values:
26 26
//
Server/ServerApp/ServerApp.csproj
1
<?xml version="1.0" encoding="utf-8"?>
1
<?xml version="1.0" encoding="utf-8"?>
2 2
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 3
  <Import Project="..\packages\Microsoft.ML.1.5.5\build\netstandard2.0\Microsoft.ML.props" Condition="Exists('..\packages\Microsoft.ML.1.5.5\build\netstandard2.0\Microsoft.ML.props')" />
4 4
  <Import Project="..\packages\Microsoft.ML.CpuMath.1.5.5\build\netstandard2.0\Microsoft.ML.CpuMath.props" Condition="Exists('..\packages\Microsoft.ML.CpuMath.1.5.5\build\netstandard2.0\Microsoft.ML.CpuMath.props')" />
......
6 6
  <PropertyGroup>
7 7
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
8 8
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
9
    <ProjectGuid>{B49B2821-751C-4032-8637-B4E9282DCF06}</ProjectGuid>
9
    <ProjectGuid>{18FCFB20-B860-4147-8E7C-8A0DD84C55D4}</ProjectGuid>
10 10
    <OutputType>Exe</OutputType>
11 11
    <RootNamespace>ServerApp</RootNamespace>
12 12
    <AssemblyName>ServerApp</AssemblyName>
13 13
    <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
14
	  <GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
15 14
    <FileAlignment>512</FileAlignment>
16 15
    <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
17 16
    <Deterministic>true</Deterministic>
......
46 45
    <LangVersion>7.3</LangVersion>
47 46
    <ErrorReport>prompt</ErrorReport>
48 47
    <Prefer32Bit>true</Prefer32Bit>
49
    <RestoreProjectStyle>PackageReference</RestoreProjectStyle>
50 48
  </PropertyGroup>
51 49
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
52 50
    <OutputPath>bin\x64\Release\</OutputPath>
......
58 56
    <ErrorReport>prompt</ErrorReport>
59 57
    <Prefer32Bit>true</Prefer32Bit>
60 58
  </PropertyGroup>
61
  <PropertyGroup>
62
    <StartupObject>ServerApp.Program</StartupObject>
63
  </PropertyGroup>
64 59
  <ItemGroup>
60
    <Reference Include="Microsoft.ML, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
61
      <HintPath>..\packages\Microsoft.ML.1.5.5\lib\netstandard2.0\Microsoft.ML.dll</HintPath>
62
    </Reference>
63
    <Reference Include="Microsoft.ML.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
64
      <HintPath>..\packages\Microsoft.ML.1.5.5\lib\netstandard2.0\Microsoft.ML.Core.dll</HintPath>
65
    </Reference>
66
    <Reference Include="Microsoft.ML.CpuMath, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
67
      <HintPath>..\packages\Microsoft.ML.CpuMath.1.5.5\lib\netstandard2.0\Microsoft.ML.CpuMath.dll</HintPath>
68
    </Reference>
69
    <Reference Include="Microsoft.ML.Data, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
70
      <HintPath>..\packages\Microsoft.ML.1.5.5\lib\netstandard2.0\Microsoft.ML.Data.dll</HintPath>
71
    </Reference>
72
    <Reference Include="Microsoft.ML.DataView, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
73
      <HintPath>..\packages\Microsoft.ML.DataView.1.5.5\lib\netstandard2.0\Microsoft.ML.DataView.dll</HintPath>
74
    </Reference>
75
    <Reference Include="Microsoft.ML.KMeansClustering, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
76
      <HintPath>..\packages\Microsoft.ML.1.5.5\lib\netstandard2.0\Microsoft.ML.KMeansClustering.dll</HintPath>
77
    </Reference>
78
    <Reference Include="Microsoft.ML.PCA, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
79
      <HintPath>..\packages\Microsoft.ML.1.5.5\lib\netstandard2.0\Microsoft.ML.PCA.dll</HintPath>
80
    </Reference>
81
    <Reference Include="Microsoft.ML.StandardTrainers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
82
      <HintPath>..\packages\Microsoft.ML.1.5.5\lib\netstandard2.0\Microsoft.ML.StandardTrainers.dll</HintPath>
83
    </Reference>
84
    <Reference Include="Microsoft.ML.Transforms, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
85
      <HintPath>..\packages\Microsoft.ML.1.5.5\lib\netstandard2.0\Microsoft.ML.Transforms.dll</HintPath>
86
    </Reference>
87
    <Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
88
      <HintPath>..\packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
89
    </Reference>
65 90
    <Reference Include="System" />
91
    <Reference Include="System.Buffers, Version=4.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
92
      <HintPath>..\packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll</HintPath>
93
    </Reference>
94
    <Reference Include="System.CodeDom, Version=4.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
95
      <HintPath>..\packages\System.CodeDom.4.4.0\lib\net461\System.CodeDom.dll</HintPath>
96
    </Reference>
97
    <Reference Include="System.Collections.Immutable, Version=1.2.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
98
      <HintPath>..\packages\System.Collections.Immutable.1.5.0\lib\netstandard2.0\System.Collections.Immutable.dll</HintPath>
99
    </Reference>
66 100
    <Reference Include="System.Core" />
67 101
    <Reference Include="System.IO.Compression" />
68 102
    <Reference Include="System.IO.Compression.FileSystem" />
103
    <Reference Include="System.IO.Compression.ZipFile, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
104
      <HintPath>..\packages\System.IO.Compression.ZipFile.4.3.0\lib\net46\System.IO.Compression.ZipFile.dll</HintPath>
105
      <Private>True</Private>
106
      <Private>True</Private>
107
    </Reference>
108
    <Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
109
      <HintPath>..\packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll</HintPath>
110
    </Reference>
111
    <Reference Include="System.Numerics" />
112
    <Reference Include="System.Numerics.Vectors, Version=4.1.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
113
      <HintPath>..\packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll</HintPath>
114
    </Reference>
115
    <Reference Include="System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
116
      <HintPath>..\packages\System.Runtime.CompilerServices.Unsafe.4.5.3\lib\net461\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
117
    </Reference>
118
    <Reference Include="System.Threading.Channels, Version=4.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
119
      <HintPath>..\packages\System.Threading.Channels.4.7.1\lib\net461\System.Threading.Channels.dll</HintPath>
120
    </Reference>
121
    <Reference Include="System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
122
      <HintPath>..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll</HintPath>
123
    </Reference>
69 124
    <Reference Include="System.Xml.Linq" />
70 125
    <Reference Include="System.Data.DataSetExtensions" />
71 126
    <Reference Include="Microsoft.CSharp" />
......
74 129
    <Reference Include="System.Xml" />
75 130
  </ItemGroup>
76 131
  <ItemGroup>
77

  
78 132
    <Compile Include="Connection\SocketListener.cs" />
79 133
    <Compile Include="DataDownload\DataDownloader.cs" />
80
    <Compile Include="obj\Debug\.NETFramework,Version=v4.7.2.AssemblyAttributes.cs" />
81

  
82
    <Compile Include="Predictor\IPredictor.cs" />
83
    <Compile Include="Predictor\ModelInput.cs" />
84
    <Compile Include="Predictor\ModelOutput.cs" />
85
    <Compile Include="Predictor\NaiveBayesClassifier.cs" />
86

  
87 134
    <Compile Include="Parser\InputData\CsvDataLoader.cs" />
88 135
    <Compile Include="Parser\InputData\DataLoader.cs" />
89 136
    <Compile Include="Parser\InputData\JisInstance.cs" />
90 137
    <Compile Include="Parser\InputData\LogInInstance.cs" />
91 138
    <Compile Include="Parser\InputData\WeatherInstance.cs" />
92 139
    <Compile Include="Parser\OutputInfo\ActivityInfo.cs" />
140
    <Compile Include="Parser\OutputInfo\JisInfo.cs" />
141
    <Compile Include="Parser\OutputInfo\LogInInfo.cs" />
142
    <Compile Include="Parser\OutputInfo\LumInfo.cs" />
143
    <Compile Include="Parser\OutputInfo\RainInfo.cs" />
144
    <Compile Include="Parser\OutputInfo\TempInfo.cs" />
93 145
    <Compile Include="Parser\OutputInfo\WeatherConditions.cs" />
94 146
    <Compile Include="Parser\OutputInfo\WeatherInfo.cs" />
147
    <Compile Include="Parser\OutputInfo\WindInfo.cs" />
148
    <Compile Include="Parser\Parsers\CsvParser.cs" />
95 149
    <Compile Include="Parser\Parsers\DataParser.cs" />
96 150
    <Compile Include="Parser\Parsers\JisParser.cs" />
97 151
    <Compile Include="Parser\Parsers\LogInParser.cs" />
98 152
    <Compile Include="Parser\Parsers\TagInfo.cs" />
99 153
    <Compile Include="Parser\Parsers\WeatherParser.cs" />
154
    <Compile Include="Predictor\IPredictor.cs" />
155
    <Compile Include="Predictor\ModelInput.cs" />
156
    <Compile Include="Predictor\ModelOutput.cs" />
157
    <Compile Include="Predictor\NaiveBayesClassifier.cs" />
100 158
    <Compile Include="Program.cs" />
101 159
    <Compile Include="Properties\AssemblyInfo.cs" />
102 160
  </ItemGroup>
103 161
  <ItemGroup>
104 162
    <None Include="App.config" />
105
    <None Include="data\jis\OD_ZCU_JIS_06_2019.CSV">
106
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
107
    </None>
108
    <None Include="data\jis\OD_ZCU_JIS_09_2019.CSV">
109
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
110
    </None>
111
    <None Include="data\jis\OD_ZCU_JIS_10_2019.CSV">
112
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
113
    </None>
114
    <None Include="data\jis\OD_ZCU_JIS_11_2019.CSV">
115
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
116
    </None>
117
    <None Include="data\jis\OD_ZCU_JIS_13_2019.CSV">
118
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
119
    </None>
120
    <None Include="data\jis\OD_ZCU_JIS_12_2019.CSV">
121
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
122
    </None>
123
    <None Include="data\login\OD_ZCU_STROJE_06_2019.CSV">
124
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
125
    </None>
126
    <None Include="data\login\OD_ZCU_STROJE_09_2019.CSV">
127
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
128
    </None>
129
    <None Include="data\login\OD_ZCU_STROJE_10_2019.CSV">
130
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
131
    </None>
132
    <None Include="data\login\OD_ZCU_STROJE_11_2019.CSV">
133
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
134
    </None>
135
    <None Include="data\login\OD_ZCU_STROJE_12_2019.CSV">
136
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
137
    </None>
138
    <None Include="data\login\OD_ZCU_STROJE_13_2019.CSV">
139
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
140
    </None>
141
    <None Include="data\weather\OD_ZCU_POCASI_13_2019.CSV">
142
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
143
    </None>
144
    <None Include="data\weather\OD_ZCU_POCASI_06_2019.CSV">
145
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
146
    </None>
147
    <None Include="data\weather\OD_ZCU_POCASI_09_2019.CSV">
148
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
149
    </None>
150
    <None Include="data\weather\OD_ZCU_POCASI_10_2019.CSV">
151
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
152
    </None>
153
    <None Include="data\weather\OD_ZCU_POCASI_11_2019.CSV">
154
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
155
    </None>
156
    <None Include="data\weather\OD_ZCU_POCASI_12_2019.CSV">
157
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
158
    </None>
163
    <None Include="data\auto\JIS\OD_ZCU_JIS_00_2019.CSV" />
164
    <None Include="data\auto\JIS\OD_ZCU_JIS_01_2020.CSV" />
165
    <None Include="data\auto\JIS\OD_ZCU_JIS_02_2020.CSV" />
166
    <None Include="data\auto\JIS\OD_ZCU_JIS_03_2020.CSV" />
167
    <None Include="data\auto\JIS\OD_ZCU_JIS_04_2020.CSV" />
168
    <None Include="data\auto\JIS\OD_ZCU_JIS_05_2020.CSV" />
169
    <None Include="data\auto\JIS\OD_ZCU_JIS_06_2019.CSV" />
170
    <None Include="data\auto\JIS\OD_ZCU_JIS_06_2020.CSV" />
171
    <None Include="data\auto\JIS\OD_ZCU_JIS_07_2019.CSV" />
172
    <None Include="data\auto\JIS\OD_ZCU_JIS_07_2020.CSV" />
173
    <None Include="data\auto\JIS\OD_ZCU_JIS_08_2019.CSV" />
174
    <None Include="data\auto\JIS\OD_ZCU_JIS_08_2020.CSV" />
175
    <None Include="data\auto\JIS\OD_ZCU_JIS_09_2019.CSV" />
176
    <None Include="data\auto\JIS\OD_ZCU_JIS_09_2020.CSV" />
177
    <None Include="data\auto\JIS\OD_ZCU_JIS_10_2019.CSV" />
178
    <None Include="data\auto\JIS\OD_ZCU_JIS_10_2020.CSV" />
179
    <None Include="data\auto\JIS\OD_ZCU_JIS_11_2019.CSV" />
180
    <None Include="data\auto\JIS\OD_ZCU_JIS_11_2020.CSV" />
181
    <None Include="data\auto\JIS\OD_ZCU_JIS_12_2019.CSV" />
182
    <None Include="data\auto\JIS\OD_ZCU_JIS_12_2020.CSV" />
183
    <None Include="data\auto\POCASI\OD_ZCU_POCASI_00_2019.CSV" />
184
    <None Include="data\auto\POCASI\OD_ZCU_POCASI_01_2020.CSV" />
185
    <None Include="data\auto\POCASI\OD_ZCU_POCASI_02_2020.CSV" />
186
    <None Include="data\auto\POCASI\OD_ZCU_POCASI_03_2020.CSV" />
187
    <None Include="data\auto\POCASI\OD_ZCU_POCASI_04_2020.CSV" />
188
    <None Include="data\auto\POCASI\OD_ZCU_POCASI_05_2020.CSV" />
189
    <None Include="data\auto\POCASI\OD_ZCU_POCASI_06_2019.CSV" />
190
    <None Include="data\auto\POCASI\OD_ZCU_POCASI_06_2020.CSV" />
191
    <None Include="data\auto\POCASI\OD_ZCU_POCASI_07_2019.CSV" />
192
    <None Include="data\auto\POCASI\OD_ZCU_POCASI_07_2020.CSV" />
193
    <None Include="data\auto\POCASI\OD_ZCU_POCASI_08_2019.CSV" />
194
    <None Include="data\auto\POCASI\OD_ZCU_POCASI_08_2020.CSV" />
195
    <None Include="data\auto\POCASI\OD_ZCU_POCASI_09_2019.CSV" />
196
    <None Include="data\auto\POCASI\OD_ZCU_POCASI_09_2020.CSV" />
197
    <None Include="data\auto\POCASI\OD_ZCU_POCASI_10_2019.CSV" />
198
    <None Include="data\auto\POCASI\OD_ZCU_POCASI_10_2020.CSV" />
199
    <None Include="data\auto\POCASI\OD_ZCU_POCASI_11_2019.CSV" />
200
    <None Include="data\auto\POCASI\OD_ZCU_POCASI_11_2020.CSV" />
201
    <None Include="data\auto\POCASI\OD_ZCU_POCASI_12_2019.CSV" />
202
    <None Include="data\auto\POCASI\OD_ZCU_POCASI_12_2020.CSV" />
203
    <None Include="data\auto\STROJE\OD_ZCU_STROJE_00_2019.CSV" />
204
    <None Include="data\auto\STROJE\OD_ZCU_STROJE_01_2020.CSV" />
205
    <None Include="data\auto\STROJE\OD_ZCU_STROJE_02_2020.CSV" />
206
    <None Include="data\auto\STROJE\OD_ZCU_STROJE_03_2020.CSV" />
207
    <None Include="data\auto\STROJE\OD_ZCU_STROJE_04_2020.CSV" />
208
    <None Include="data\auto\STROJE\OD_ZCU_STROJE_05_2020.CSV" />
209
    <None Include="data\auto\STROJE\OD_ZCU_STROJE_06_2019.CSV" />
210
    <None Include="data\auto\STROJE\OD_ZCU_STROJE_06_2020.CSV" />
211
    <None Include="data\auto\STROJE\OD_ZCU_STROJE_07_2019.CSV" />
212
    <None Include="data\auto\STROJE\OD_ZCU_STROJE_07_2020.CSV" />
213
    <None Include="data\auto\STROJE\OD_ZCU_STROJE_08_2019.CSV" />
214
    <None Include="data\auto\STROJE\OD_ZCU_STROJE_08_2020.CSV" />
215
    <None Include="data\auto\STROJE\OD_ZCU_STROJE_09_2019.CSV" />
216
    <None Include="data\auto\STROJE\OD_ZCU_STROJE_09_2020.CSV" />
217
    <None Include="data\auto\STROJE\OD_ZCU_STROJE_10_2019.CSV" />
218
    <None Include="data\auto\STROJE\OD_ZCU_STROJE_10_2020.CSV" />
219
    <None Include="data\auto\STROJE\OD_ZCU_STROJE_11_2019.CSV" />
220
    <None Include="data\auto\STROJE\OD_ZCU_STROJE_11_2020.CSV" />
221
    <None Include="data\auto\STROJE\OD_ZCU_STROJE_12_2019.CSV" />
222
    <None Include="data\auto\STROJE\OD_ZCU_STROJE_12_2020.CSV" />
223
    <None Include="data\jis\OD_ZCU_JIS_06_2019.CSV" />
224
    <None Include="data\jis\OD_ZCU_JIS_09_2019.CSV" />
225
    <None Include="data\jis\OD_ZCU_JIS_10_2019.CSV" />
226
    <None Include="data\jis\OD_ZCU_JIS_11_2019.CSV" />
227
    <None Include="data\jis\OD_ZCU_JIS_12_2019.CSV" />
228
    <None Include="data\jis\OD_ZCU_JIS_13_2019.CSV" />
229
    <None Include="data\login\OD_ZCU_STROJE_06_2019.CSV" />
230
    <None Include="data\login\OD_ZCU_STROJE_09_2019.CSV" />
231
    <None Include="data\login\OD_ZCU_STROJE_10_2019.CSV" />
232
    <None Include="data\login\OD_ZCU_STROJE_11_2019.CSV" />
233
    <None Include="data\login\OD_ZCU_STROJE_12_2019.CSV" />
234
    <None Include="data\login\OD_ZCU_STROJE_13_2019.CSV" />
235
    <None Include="data\weather\OD_ZCU_POCASI_06_2019.CSV" />
236
    <None Include="data\weather\OD_ZCU_POCASI_09_2019.CSV" />
237
    <None Include="data\weather\OD_ZCU_POCASI_10_2019.CSV" />
238
    <None Include="data\weather\OD_ZCU_POCASI_11_2019.CSV" />
239
    <None Include="data\weather\OD_ZCU_POCASI_12_2019.CSV" />
240
    <None Include="data\weather\OD_ZCU_POCASI_13_2019.CSV" />
159 241
    <None Include="packages.config" />
160 242
  </ItemGroup>
161
  <ItemGroup>
162
    <PackageReference Include="Microsoft.ML">
163
      <Version>1.5.2</Version>
164
    </PackageReference>
165
    <PackageReference Include="System.Runtime.CompilerServices.Unsafe">
166
      <Version>5.0.0</Version>
167
    </PackageReference>
168
  </ItemGroup>
169
  <ItemGroup>
170
    <WCFMetadata Include="Connected Services\" />
171
  </ItemGroup>
172 243
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
173 244
  <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
174 245
    <PropertyGroup>
Server/ServerApp/ServerApp.csproj.user
1
<?xml version="1.0" encoding="utf-8"?>
2
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
  <PropertyGroup>
4
    <ProjectView>ShowAllFiles</ProjectView>
5
  </PropertyGroup>
6
</Project>
Server/ServerApp/packages.config
7 7
  <package id="System.Buffers" version="4.4.0" targetFramework="net472" />
8 8
  <package id="System.CodeDom" version="4.4.0" targetFramework="net472" />
9 9
  <package id="System.Collections.Immutable" version="1.5.0" targetFramework="net472" />
10
  <package id="System.IO.Compression.ZipFile" version="4.3.0" targetFramework="net472" />
10 11
  <package id="System.Memory" version="4.5.3" targetFramework="net472" />
11 12
  <package id="System.Numerics.Vectors" version="4.4.0" targetFramework="net472" />
12 13
  <package id="System.Reflection.Emit.Lightweight" version="4.3.0" targetFramework="net472" />

Také k dispozici: Unified diff