发布版本不可用WPF

时间:2009-01-14 20:47:08

标签: c# wpf visual-studio-2008 build release

我正在编写一个相当简单的WPF桌面应用程序,并且在build \ configuration manager下,release不是一个选项。唯一可用的选项是Debug,New和Edit。

任何人都知道为什么会这样?

相关:同一解决方案中的控件库确实具有作为构建选项的版本。它只在wpf应用程序中丢失。

2 个答案:

答案 0 :(得分:2)

我明白了。

要修复我将发布版本的propertygroup标记从另一个项目中的xml复制到缺少它的项目。

答案 1 :(得分:1)

propertygroup标记可以解决问题。

1)在记事本中打开您的项目文件。

2)在“debug”属性组标记之后粘贴它:

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>bin\Release\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
</PropertyGroup>