Revize cdf3c217
Přidáno uživatelem Alex Konig před více než 3 roky(ů)
Server/ServerApp/ServerApp.csproj | ||
---|---|---|
16 | 16 |
<Deterministic>true</Deterministic> |
17 | 17 |
<NuGetPackageImportStamp> |
18 | 18 |
</NuGetPackageImportStamp> |
19 |
<PublishUrl>publish\</PublishUrl> |
|
20 |
<Install>true</Install> |
|
21 |
<InstallFrom>Disk</InstallFrom> |
|
22 |
<UpdateEnabled>false</UpdateEnabled> |
|
23 |
<UpdateMode>Foreground</UpdateMode> |
|
24 |
<UpdateInterval>7</UpdateInterval> |
|
25 |
<UpdateIntervalUnits>Days</UpdateIntervalUnits> |
|
26 |
<UpdatePeriodically>false</UpdatePeriodically> |
|
27 |
<UpdateRequired>false</UpdateRequired> |
|
28 |
<MapFileExtensions>true</MapFileExtensions> |
|
29 |
<ApplicationRevision>0</ApplicationRevision> |
|
30 |
<ApplicationVersion>1.0.0.%2a</ApplicationVersion> |
|
31 |
<IsWebBootstrapper>false</IsWebBootstrapper> |
|
32 |
<UseApplicationTrust>false</UseApplicationTrust> |
|
33 |
<BootstrapperEnabled>true</BootstrapperEnabled> |
|
19 | 34 |
</PropertyGroup> |
20 | 35 |
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
21 | 36 |
<PlatformTarget>AnyCPU</PlatformTarget> |
... | ... | |
146 | 161 |
<Compile Include="DataDownload\DataDownloader.cs" /> |
147 | 162 |
<Compile Include="DataDownload\Date.cs" /> |
148 | 163 |
<Compile Include="Parser\InputData\CsvDataLoader.cs" /> |
149 |
<Compile Include="Parser\InputData\DataLoader.cs" /> |
|
164 |
<Compile Include="Parser\InputData\IDataLoader.cs" />
|
|
150 | 165 |
<Compile Include="Parser\InputData\JisInstance.cs" /> |
151 | 166 |
<Compile Include="Parser\InputData\LogInInstance.cs" /> |
152 | 167 |
<Compile Include="Parser\InputData\WeatherInstance.cs" /> |
... | ... | |
154 | 169 |
<Compile Include="Parser\OutputInfo\WeatherConditions.cs" /> |
155 | 170 |
<Compile Include="Parser\OutputInfo\WeatherInfo.cs" /> |
156 | 171 |
<Compile Include="Parser\Parsers\DataParser.cs" /> |
172 |
<Compile Include="Parser\Parsers\IDataParser.cs" /> |
|
157 | 173 |
<Compile Include="Parser\Parsers\JisParser.cs" /> |
158 |
<Compile Include="Parser\Parsers\JsonParser.cs" />
|
|
174 |
<Compile Include="WeatherPredictionParser\JsonParser.cs" />
|
|
159 | 175 |
<Compile Include="Parser\Parsers\LogInParser.cs" /> |
160 | 176 |
<Compile Include="Parser\Parsers\TagInfo.cs" /> |
161 | 177 |
<Compile Include="Parser\Parsers\WeatherParser.cs" /> |
... | ... | |
208 | 224 |
<ItemGroup> |
209 | 225 |
<Folder Include="data\auto\" /> |
210 | 226 |
</ItemGroup> |
227 |
<ItemGroup> |
|
228 |
<BootstrapperPackage Include=".NETFramework,Version=v4.7.2"> |
|
229 |
<Visible>False</Visible> |
|
230 |
<ProductName>Microsoft .NET Framework 4.7.2 %28x86 and x64%29</ProductName> |
|
231 |
<Install>true</Install> |
|
232 |
</BootstrapperPackage> |
|
233 |
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1"> |
|
234 |
<Visible>False</Visible> |
|
235 |
<ProductName>.NET Framework 3.5 SP1</ProductName> |
|
236 |
<Install>false</Install> |
|
237 |
</BootstrapperPackage> |
|
238 |
</ItemGroup> |
|
211 | 239 |
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> |
212 | 240 |
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> |
213 | 241 |
<PropertyGroup> |
Také k dispozici: Unified diff
re #8841 Fixing errors in start/end time and adding interfaces for DataParser and JsonParser