diff options
author | Zoryn Aaron <zoryn4163@gmail.com> | 2016-03-30 18:37:53 -0400 |
---|---|---|
committer | Zoryn Aaron <zoryn4163@gmail.com> | 2016-03-30 18:37:53 -0400 |
commit | 49ebb5175b790124448a506a6bf2bd0278c59e42 (patch) | |
tree | d1e986117ce3823edfade0d71918801701b3aca0 /StardewModdingAPI/StardewModdingAPI.csproj | |
parent | d38e8ac422907e8c43ee99c6036eb8dc356df98a (diff) | |
download | SMAPI-49ebb5175b790124448a506a6bf2bd0278c59e42.tar.gz SMAPI-49ebb5175b790124448a506a6bf2bd0278c59e42.tar.bz2 SMAPI-49ebb5175b790124448a506a6bf2bd0278c59e42.zip |
ticks up version. changes build path to be just /bin/[debug|release]
Diffstat (limited to 'StardewModdingAPI/StardewModdingAPI.csproj')
-rw-r--r-- | StardewModdingAPI/StardewModdingAPI.csproj | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/StardewModdingAPI/StardewModdingAPI.csproj b/StardewModdingAPI/StardewModdingAPI.csproj index 913fb50e..a7477a32 100644 --- a/StardewModdingAPI/StardewModdingAPI.csproj +++ b/StardewModdingAPI/StardewModdingAPI.csproj @@ -73,18 +73,19 @@ </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<PlatformTarget>x86</PlatformTarget>
- <OutputPath>bin\x86\Debug\</OutputPath>
+ <OutputPath>bin\Debug\</OutputPath>
<Prefer32Bit>false</Prefer32Bit>
<DefineConstants>
</DefineConstants>
<UseVSHostingProcess>true</UseVSHostingProcess>
<Optimize>true</Optimize>
- <DocumentationFile>bin\x86\Debug\StardewModdingAPI.XML</DocumentationFile>
+ <DocumentationFile>bin\Debug\StardewModdingAPI.XML</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<PlatformTarget>x86</PlatformTarget>
- <OutputPath>bin\x86\Release\</OutputPath>
+ <OutputPath>bin\Release\</OutputPath>
<Prefer32Bit>false</Prefer32Bit>
+ <DocumentationFile>bin\Release\StardewModdingAPI.XML</DocumentationFile>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>icon.ico</ApplicationIcon>
|