Skip to content

Commit

Permalink
vCommands output changes
Browse files Browse the repository at this point in the history
> Changed vCommands's Debug assemblies to have ".Debug" appended to the
name;
> Changed vCommands's Debug and Release output folders to be simply
/bin.

This makes my life easier by not having me move and rename files for
binary distributions.
  • Loading branch information
vercas committed Jun 5, 2014
1 parent c0df238 commit f0b70ee
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions vCommands/vCommands.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,24 @@
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<AssemblyName>vCommands.Debug</AssemblyName>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<OutputPath>bin\</OutputPath>
<DefineConstants>TRACE;DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Debug\vCommands.xml</DocumentationFile>
<DocumentationFile>bin\vCommands.Debug.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<OutputPath>bin\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Release\vCommands.xml</DocumentationFile>
<DocumentationFile>bin\vCommands.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
Expand Down

0 comments on commit f0b70ee

Please sign in to comment.