1
0
mirror of https://bitbucket.org/anguist/ntpa synced 2025-10-05 10:30:56 +00:00

Config cleanup & bugfixes

This commit is contained in:
2016-04-10 11:50:35 +02:00
parent 198ea86fa4
commit cb3937da99
124 changed files with 2388 additions and 1728 deletions

View File

@ -10,12 +10,12 @@
<RootNamespace>Ntp.Analyzer.Cli</RootNamespace>
<StartupObject>Ntp.Analyzer.Cli.Program</StartupObject>
<ReleaseVersion>0.4.2b</ReleaseVersion>
<AssemblyName>ntpa</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>..\bin\</OutputPath>
<WarningLevel>4</WarningLevel>
<AssemblyName>ntpa</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<Optimize>false</Optimize>
@ -23,12 +23,21 @@
<WarningLevel>4</WarningLevel>
<Externalconsole>true</Externalconsole>
<DebugSymbols>true</DebugSymbols>
<Commandlineparameters>--config ~/code/ntpa/example/ntpa.stat.conf --temp /tmp/</Commandlineparameters>
<Commandlineparameters>--config ~/code/ntpa/ntpa.web.conf --temp /tmp/</Commandlineparameters>
<AssemblyName>ntpa</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Server|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>..\bin\</OutputPath>
<WarningLevel>4</WarningLevel>
<AssemblyName>ntpa</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Develop|AnyCPU' ">
<Optimize>false</Optimize>
<OutputPath>bin\Develop</OutputPath>
<WarningLevel>4</WarningLevel>
<AssemblyName>Ntp.Analyzer.Cli</AssemblyName>
<Commandlineparameters>--config ~/code/ntpa/example/ntpa.web.conf --temp /tmp/</Commandlineparameters>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
@ -51,10 +60,6 @@
<Project>{CCF0EE0C-E3E4-4A75-AFEB-C709ED51E90F}</Project>
<Name>Ntp.Process</Name>
</ProjectReference>
<ProjectReference Include="..\Ntp.System\Ntp.System.csproj">
<Project>{A98DB601-2993-4181-A573-5FCCC5E954C1}</Project>
<Name>Ntp.System</Name>
</ProjectReference>
<ProjectReference Include="..\Ntp.Analyzer.Log\Ntp.Analyzer.Log.csproj">
<Project>{909C8729-ED63-4603-85EA-34A1FC4D63D9}</Project>
<Name>Ntp.Analyzer.Log</Name>
@ -63,6 +68,14 @@
<Project>{43A1A769-6ED9-4AE1-821A-43F97814968C}</Project>
<Name>Ntp.Config</Name>
</ProjectReference>
<ProjectReference Include="..\Ntp.Interop\Ntp.Interop.csproj">
<Project>{A98DB601-2993-4181-A573-5FCCC5E954C1}</Project>
<Name>Ntp.Interop</Name>
</ProjectReference>
<ProjectReference Include="..\Ntp.Analyzer.Localize\Ntp.Analyzer.Localize.csproj">
<Project>{6F200007-52DB-4861-A565-124270C07F67}</Project>
<Name>Ntp.Analyzer.Localize</Name>
</ProjectReference>
</ItemGroup>
<ProjectExtensions>
<MonoDevelop>

View File

@ -27,9 +27,10 @@ using System;
using System.Globalization;
using System.IO;
using System.Threading;
using Ntp.Analyzer.Localize;
using Ntp.Analyzer.Log;
using Ntp.Analyzer.Process;
using Ntp.System;
using Ntp.Interop;
namespace Ntp.Analyzer.Cli
{