Skip to content
This repository has been archived by the owner on Jul 29, 2023. It is now read-only.

Commit

Permalink
Add 'Publish' build option (don't bother with debug files)
Browse files Browse the repository at this point in the history
  • Loading branch information
GeekJosh committed Nov 18, 2018
1 parent 3da759d commit f07413b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
10 changes: 10 additions & 0 deletions BOXVR Playlist Manager/BOXVR Playlist Manager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,16 @@
<PropertyGroup>
<StartupObject>BoxVR_Playlist_Manager.App</StartupObject>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Publish|AnyCPU'">
<OutputPath>bin\Publish\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>none</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="ATL, Version=2.5.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\z440.atl.core.2.5.0\lib\net30\ATL.dll</HintPath>
Expand Down
4 changes: 2 additions & 2 deletions BOXVR Playlist Manager/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.1.1.0")]
[assembly: AssemblyFileVersion("1.1.1.0")]
[assembly: AssemblyVersion("1.1.2.0")]
[assembly: AssemblyFileVersion("1.1.2.0")]
[assembly: NeutralResourcesLanguage("en-GB")]

3 changes: 3 additions & 0 deletions BOXVRPlaylistManager.sln
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,14 @@ EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Publish|Any CPU = Publish|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{7384CEB2-7BFF-4127-BF84-A145C3422CED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7384CEB2-7BFF-4127-BF84-A145C3422CED}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7384CEB2-7BFF-4127-BF84-A145C3422CED}.Publish|Any CPU.ActiveCfg = Publish|Any CPU
{7384CEB2-7BFF-4127-BF84-A145C3422CED}.Publish|Any CPU.Build.0 = Publish|Any CPU
{7384CEB2-7BFF-4127-BF84-A145C3422CED}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7384CEB2-7BFF-4127-BF84-A145C3422CED}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
Expand Down

0 comments on commit f07413b

Please sign in to comment.