Built under Ubuntu 12.04/Mono 2.10.8.1 (Debian 2.10.8.1-5~dhx1~precise1) (64-bit)

git-svn-id: https://svn.code.sf.net/p/gettextnet/code@42 cfd95cc2-f724-4227-9a96-9a83de4730d4
This commit is contained in:
arbinada 2012-10-12 07:12:28 +00:00
Родитель 82043b1cdb
Коммит 3f7c5f3b4f
3 изменённых файлов: 5 добавлений и 15 удалений

Просмотреть файл

@ -11,14 +11,12 @@
<RootNamespace>GNU.Gettext.Msgfmt</RootNamespace>
<AssemblyName>GNU.Gettext.Msgfmt</AssemblyName>
<FileAlignment>512</FileAlignment>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>../../Bin/Debug</OutputPath>
<OutputPath>..\..\Bin\Debug</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
@ -27,7 +25,7 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>../../Bin/Release</OutputPath>
<OutputPath>..\..\Bin\Release</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
@ -51,8 +49,5 @@
<Name>GNU.Gettext</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

Просмотреть файл

@ -16,7 +16,7 @@ namespace GNU.Gettext.Test
SimpleTestRunner runner = new SimpleTestRunner();
if (runner.Load(package))
{
TestResult result = runner.Run(new NullListener());
TestResult result = runner.Run(new NullListener(), TestFilter.Empty, true, LoggingThreshold.Debug);
if (!result.IsSuccess)
throw new Exception(result.Message);
}

Просмотреть файл

@ -9,14 +9,12 @@
<OutputType>Exe</OutputType>
<RootNamespace>GNU.Gettext.Xgettext</RootNamespace>
<AssemblyName>GNU.Gettext.Xgettext</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>../../Bin/Debug</OutputPath>
<OutputPath>..\..\Bin\Debug</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
@ -26,7 +24,7 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>false</Optimize>
<OutputPath>../../Bin/Release</OutputPath>
<OutputPath>..\..\Bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Externalconsole>true</Externalconsole>
@ -52,7 +50,4 @@
<Name>GNU.Gettext</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
</ItemGroup>
</Project>