Projekt

Obecné

Profil

Stáhnout (8.89 KB) Statistiky
| Větev: | Tag: | Revize:
1 fa2db1ee Alex Konig
<?xml version="1.0" encoding="utf-8"?>
2 3811845f Alex Konig
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 9fc5fa93 Roman Kalivoda
  <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
  <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')" />
5 3811845f Alex Konig
  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
6
  <PropertyGroup>
7
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
8
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
9
    <ProjectGuid>{B49B2821-751C-4032-8637-B4E9282DCF06}</ProjectGuid>
10
    <OutputType>Exe</OutputType>
11
    <RootNamespace>ServerApp</RootNamespace>
12
    <AssemblyName>ServerApp</AssemblyName>
13
    <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
14 57a75f60 Roman Kalivoda
	  <GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
15 3811845f Alex Konig
    <FileAlignment>512</FileAlignment>
16
    <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
17
    <Deterministic>true</Deterministic>
18 9fc5fa93 Roman Kalivoda
    <NuGetPackageImportStamp>
19
    </NuGetPackageImportStamp>
20 3811845f Alex Konig
  </PropertyGroup>
21
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
22
    <PlatformTarget>AnyCPU</PlatformTarget>
23
    <DebugSymbols>true</DebugSymbols>
24
    <DebugType>full</DebugType>
25
    <Optimize>false</Optimize>
26
    <OutputPath>bin\Debug\</OutputPath>
27
    <DefineConstants>DEBUG;TRACE</DefineConstants>
28
    <ErrorReport>prompt</ErrorReport>
29
    <WarningLevel>4</WarningLevel>
30
  </PropertyGroup>
31
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
32
    <PlatformTarget>AnyCPU</PlatformTarget>
33
    <DebugType>pdbonly</DebugType>
34
    <Optimize>true</Optimize>
35
    <OutputPath>bin\Release\</OutputPath>
36
    <DefineConstants>TRACE</DefineConstants>
37
    <ErrorReport>prompt</ErrorReport>
38
    <WarningLevel>4</WarningLevel>
39
  </PropertyGroup>
40 9fc5fa93 Roman Kalivoda
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
41
    <DebugSymbols>true</DebugSymbols>
42
    <OutputPath>bin\x64\Debug\</OutputPath>
43
    <DefineConstants>DEBUG;TRACE</DefineConstants>
44
    <DebugType>full</DebugType>
45
    <PlatformTarget>x64</PlatformTarget>
46
    <LangVersion>7.3</LangVersion>
47
    <ErrorReport>prompt</ErrorReport>
48
    <Prefer32Bit>true</Prefer32Bit>
49 66c3e0df Roman Kalivoda
    <RestoreProjectStyle>PackageReference</RestoreProjectStyle>
50 9fc5fa93 Roman Kalivoda
  </PropertyGroup>
51
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
52
    <OutputPath>bin\x64\Release\</OutputPath>
53
    <DefineConstants>TRACE</DefineConstants>
54
    <Optimize>true</Optimize>
55
    <DebugType>pdbonly</DebugType>
56
    <PlatformTarget>x64</PlatformTarget>
57
    <LangVersion>7.3</LangVersion>
58
    <ErrorReport>prompt</ErrorReport>
59
    <Prefer32Bit>true</Prefer32Bit>
60
  </PropertyGroup>
61 66c3e0df Roman Kalivoda
  <PropertyGroup>
62
    <StartupObject>ServerApp.Program</StartupObject>
63
  </PropertyGroup>
64 3811845f Alex Konig
  <ItemGroup>
65
    <Reference Include="System" />
66
    <Reference Include="System.Core" />
67 d2d1c86a Eliška Mourycová
    <Reference Include="System.IO.Compression" />
68
    <Reference Include="System.IO.Compression.FileSystem" />
69 3811845f Alex Konig
    <Reference Include="System.Xml.Linq" />
70
    <Reference Include="System.Data.DataSetExtensions" />
71
    <Reference Include="Microsoft.CSharp" />
72
    <Reference Include="System.Data" />
73
    <Reference Include="System.Net.Http" />
74
    <Reference Include="System.Xml" />
75
  </ItemGroup>
76
  <ItemGroup>
77 fa2db1ee Alex Konig
78 36c0667f Eliška Mourycová
    <Compile Include="Connection\SocketListener.cs" />
79 d2d1c86a Eliška Mourycová
    <Compile Include="DataDownload\DataDownloader.cs" />
80 3811845f Alex Konig
    <Compile Include="obj\Debug\.NETFramework,Version=v4.7.2.AssemblyAttributes.cs" />
81 fa2db1ee Alex Konig
82 abfd9c7c Roman Kalivoda
    <Compile Include="Predictor\IPredictor.cs" />
83
    <Compile Include="Predictor\ModelInput.cs" />
84 9fc5fa93 Roman Kalivoda
    <Compile Include="Predictor\ModelOutput.cs" />
85 abfd9c7c Roman Kalivoda
    <Compile Include="Predictor\NaiveBayesClassifier.cs" />
86 fa2db1ee Alex Konig
87 3811845f Alex Konig
    <Compile Include="Parser\InputData\CsvDataLoader.cs" />
88 98b568bc A-Konig
    <Compile Include="Parser\InputData\DataLoader.cs" />
89 3811845f Alex Konig
    <Compile Include="Parser\InputData\JisInstance.cs" />
90
    <Compile Include="Parser\InputData\LogInInstance.cs" />
91
    <Compile Include="Parser\InputData\WeatherInstance.cs" />
92 734533a8 A-Konig
    <Compile Include="Parser\OutputInfo\ActivityInfo.cs" />
93
    <Compile Include="Parser\OutputInfo\WeatherConditions.cs" />
94 3811845f Alex Konig
    <Compile Include="Parser\OutputInfo\WeatherInfo.cs" />
95 734533a8 A-Konig
    <Compile Include="Parser\Parsers\DataParser.cs" />
96 3811845f Alex Konig
    <Compile Include="Parser\Parsers\JisParser.cs" />
97
    <Compile Include="Parser\Parsers\LogInParser.cs" />
98
    <Compile Include="Parser\Parsers\TagInfo.cs" />
99
    <Compile Include="Parser\Parsers\WeatherParser.cs" />
100
    <Compile Include="Program.cs" />
101
    <Compile Include="Properties\AssemblyInfo.cs" />
102
  </ItemGroup>
103
  <ItemGroup>
104
    <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 ecdce631 A-Konig
    <None Include="data\jis\OD_ZCU_JIS_13_2019.CSV">
118
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
119
    </None>
120 3811845f Alex Konig
    <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 54fb2bde A-Konig
    <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 0da0ac88 A-Konig
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
143
    </None>
144 3811845f Alex Konig
    <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>
159 9fc5fa93 Roman Kalivoda
    <None Include="packages.config" />
160 93452c41 A-Konig
  </ItemGroup>
161
  <ItemGroup>
162 66c3e0df Roman Kalivoda
    <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 3811845f Alex Konig
  </ItemGroup>
169
  <ItemGroup>
170 98b568bc A-Konig
    <WCFMetadata Include="Connected Services\" />
171 3811845f Alex Konig
  </ItemGroup>
172
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
173 9fc5fa93 Roman Kalivoda
  <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
174
    <PropertyGroup>
175
      <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them.  For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
176
    </PropertyGroup>
177
    <Error Condition="!Exists('..\packages\Microsoft.ML.CpuMath.1.5.5\build\netstandard2.0\Microsoft.ML.CpuMath.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.ML.CpuMath.1.5.5\build\netstandard2.0\Microsoft.ML.CpuMath.props'))" />
178
    <Error Condition="!Exists('..\packages\Microsoft.ML.1.5.5\build\netstandard2.0\Microsoft.ML.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.ML.1.5.5\build\netstandard2.0\Microsoft.ML.props'))" />
179
    <Error Condition="!Exists('..\packages\Microsoft.ML.1.5.5\build\netstandard2.0\Microsoft.ML.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.ML.1.5.5\build\netstandard2.0\Microsoft.ML.targets'))" />
180
  </Target>
181
  <Import Project="..\packages\Microsoft.ML.1.5.5\build\netstandard2.0\Microsoft.ML.targets" Condition="Exists('..\packages\Microsoft.ML.1.5.5\build\netstandard2.0\Microsoft.ML.targets')" />
182 3811845f Alex Konig
</Project>