1
0
mirror of https://bitbucket.org/anguist/ntpa synced 2025-10-06 02:51:23 +00:00

Fixed faulty build definition

This commit is contained in:
2016-04-02 20:55:25 +02:00
parent bb3592575d
commit d86a279d7b
2 changed files with 12 additions and 11 deletions

View File

@ -3,12 +3,6 @@ all:
server:
xbuild Ntp.Analyzer.sln /property:Configuration=Server
cp bin/ntpa/Debug/* bin/
cp bin/ntpav/Debug/* bin/
cp bin/ntpac/Debug/* bin/
rm -Rf bin/ntpa
rm -Rf bin/ntpav
rm -Rf bin/ntpac
release:
xbuild Ntp.Analyzer.sln /property:Configuration=Release

View File

@ -62,6 +62,18 @@
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Server|AnyCPU' ">
<Optimize>true</Optimize>
<BaseOutputPath>
</BaseOutputPath>
<BaseIntermediateOutputPath>obj\</BaseIntermediateOutputPath>
<IntermediateOutputPath>obj\</IntermediateOutputPath>
<OutputPath>..\..\..\bin\</OutputPath>
<DefineConstants>$(DefineConstants);TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>1</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Configuration" />
@ -253,9 +265,4 @@
<PostBuildEvent>
</PostBuildEvent>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Server|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>..\..\..\bin\</OutputPath>
<WarningLevel>1</WarningLevel>
</PropertyGroup>
</Project>