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

Commit f07413b

Browse files
committed
Add 'Publish' build option (don't bother with debug files)
1 parent 3da759d commit f07413b

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

BOXVR Playlist Manager/BOXVR Playlist Manager.csproj

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,16 @@
3737
<PropertyGroup>
3838
<StartupObject>BoxVR_Playlist_Manager.App</StartupObject>
3939
</PropertyGroup>
40+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Publish|AnyCPU'">
41+
<OutputPath>bin\Publish\</OutputPath>
42+
<DefineConstants>TRACE</DefineConstants>
43+
<Optimize>true</Optimize>
44+
<DebugType>none</DebugType>
45+
<PlatformTarget>AnyCPU</PlatformTarget>
46+
<ErrorReport>prompt</ErrorReport>
47+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
48+
<Prefer32Bit>true</Prefer32Bit>
49+
</PropertyGroup>
4050
<ItemGroup>
4151
<Reference Include="ATL, Version=2.5.0.0, Culture=neutral, processorArchitecture=MSIL">
4252
<HintPath>..\packages\z440.atl.core.2.5.0\lib\net30\ATL.dll</HintPath>

BOXVR Playlist Manager/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
// You can specify all the values or you can default the Build and Revision Numbers
5252
// by using the '*' as shown below:
5353
// [assembly: AssemblyVersion("1.0.*")]
54-
[assembly: AssemblyVersion("1.1.1.0")]
55-
[assembly: AssemblyFileVersion("1.1.1.0")]
54+
[assembly: AssemblyVersion("1.1.2.0")]
55+
[assembly: AssemblyFileVersion("1.1.2.0")]
5656
[assembly: NeutralResourcesLanguage("en-GB")]
5757

BOXVRPlaylistManager.sln

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,14 @@ EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1010
Debug|Any CPU = Debug|Any CPU
11+
Publish|Any CPU = Publish|Any CPU
1112
Release|Any CPU = Release|Any CPU
1213
EndGlobalSection
1314
GlobalSection(ProjectConfigurationPlatforms) = postSolution
1415
{7384CEB2-7BFF-4127-BF84-A145C3422CED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
1516
{7384CEB2-7BFF-4127-BF84-A145C3422CED}.Debug|Any CPU.Build.0 = Debug|Any CPU
17+
{7384CEB2-7BFF-4127-BF84-A145C3422CED}.Publish|Any CPU.ActiveCfg = Publish|Any CPU
18+
{7384CEB2-7BFF-4127-BF84-A145C3422CED}.Publish|Any CPU.Build.0 = Publish|Any CPU
1619
{7384CEB2-7BFF-4127-BF84-A145C3422CED}.Release|Any CPU.ActiveCfg = Release|Any CPU
1720
{7384CEB2-7BFF-4127-BF84-A145C3422CED}.Release|Any CPU.Build.0 = Release|Any CPU
1821
EndGlobalSection

0 commit comments

Comments
 (0)