在大多数情况下,您只需将Visual Studio为您设置的任何内容作为默认值……我指的是在解决方案资源管理器中选择的每个文件的BuildAction属性。有很多选择,很难知道每一个会做什么。
当前回答
Microsoft Connect的这一页(解释DesignData和DesignDataWithDesignTimeCreatableTypes)类型如何?引用:
下面描述了样本数据文件的两个构建操作。
样例数据.xaml文件必须分配以下构建操作之一:
DesignData:样例数据类型将被创建为伪类型。当样例数据类型不可创建或具有您希望为其定义样例数据值的只读属性时,请使用此构建操作。
DesignDataWithDesignTimeCreatableTypes:使用样例数据文件中定义的类型创建样例数据类型。当可以使用样例数据类型的默认空构造函数创建样例数据类型时,使用此构建操作。
不是很详尽,但至少给了一个提示。这个MSDN演练也提供了一些想法。我不知道这些构建操作是否也适用于非silverlight项目。
其他回答
Fakes: Microsoft Fakes(单元测试隔离)框架的一部分。在所有Visual Studio版本上不可用。Fakes用于支持项目中的单元测试,通过用stub或shims替换应用程序的其他部分来帮助您隔离正在测试的代码。更多信息请点击:https://msdn.microsoft.com/en-us/library/hh549175.aspx
VS2010有一个属性用于“构建动作”,还有一个属性用于“复制到输出目录”。因此,如果复制属性设置为“更新时复制”或“始终复制”,'None'的操作仍然会复制到构建目录。
因此,“内容”的构建动作应该保留,以指示您将通过“应用程序”访问的内容。GetContentStream”
对于一些外部链接的.config include,我使用了“None”的“构建动作”设置和“如果更新则复制到输出目录”的“复制到输出目录”设置。
G.
Microsoft Connect的这一页(解释DesignData和DesignDataWithDesignTimeCreatableTypes)类型如何?引用:
下面描述了样本数据文件的两个构建操作。
样例数据.xaml文件必须分配以下构建操作之一:
DesignData:样例数据类型将被创建为伪类型。当样例数据类型不可创建或具有您希望为其定义样例数据值的只读属性时,请使用此构建操作。
DesignDataWithDesignTimeCreatableTypes:使用样例数据文件中定义的类型创建样例数据类型。当可以使用样例数据类型的默认空构造函数创建样例数据类型时,使用此构建操作。
不是很详尽,但至少给了一个提示。这个MSDN演练也提供了一些想法。我不知道这些构建操作是否也适用于非silverlight项目。
在VS2008中,最有用的文档条目是:
构建WPF应用程序(WPF)
ms-help: / / MS.VSCC.v90 / MS.MSDNQTR.v90.en / wpf_conceptual / html / a58696fd bdad - 4 b55 - 9759 - 136 - dfdf8b91c.htm
ApplicationDefinition 标识包含应用程序定义的XAML标记文件(根元素为application的XAML标记文件)。当Install为true且OutputType为winexe时,ApplicationDefinition是必选项。一个WPF应用程序以及MSBuild项目只能有一个ApplicationDefinition。
页面 标识一个XAML标记文件,该文件的内容被转换为二进制格式并编译为程序集。页面项通常与代码隐藏类一起实现。
最常见的Page项是XAML文件,其顶级元素是以下其中之一:
Window (System.Windows..::.Window).
Page (System.Windows.Controls..::.Page).
PageFunction (System.Windows.Navigation..::.PageFunction<(Of <(T>)>)).
ResourceDictionary (System.Windows..::.ResourceDictionary).
FlowDocument (System.Windows.Documents..::.FlowDocument).
UserControl (System.Windows.Controls..::.UserControl).
资源 标识编译为应用程序程序集的资源文件。如前所述,UICulture处理资源项。
内容 标识随应用程序分发的内容文件。描述内容文件的元数据被编译到应用程序中(使用AssemblyAssociatedContentFileAttribute)。
None: The file is not included in the project output group and is not compiled in the build process. An example is a text file that contains documentation, such as a Readme file. Compile: The file is compiled into the build output. This setting is used for code files. Content: Allows you to retrieve a file (in the same directory as the assembly) as a stream via Application.GetContentStream(URI). For this method to work, it needs a AssemblyAssociatedContentFile custom attribute which Visual Studio graciously adds when you mark a file as "Content" Embedded resource: Embeds the file in an exclusive assembly manifest resource. Resource (WPF only): Embeds the file in a shared (by all files in the assembly with similar setting) assembly manifest resource named AppName.g.resources. Page (WPF only): Used to compile a xaml file into baml. The baml is then embedded with the same technique as Resource (i.e. available as `AppName.g.resources) ApplicationDefinition (WPF only): Mark the XAML/class file that defines your application. You specify the code-behind with the x:Class="Namespace.ClassName" and set the startup form/page with StartupUri="Window1.xaml" SplashScreen (WPF only): An image that is marked as SplashScreen is shown automatically when an WPF application loads, and then fades DesignData: Compiles XAML viewmodels so that usercontrols can be previewed with sample data in Visual Studio (uses mock types) DesignDataWithDesignTimeCreatableTypes: Compiles XAML viewmodels so that usercontrols can be previewed with sample data in Visual Studio (uses actual types) EntityDeploy: (Entity Framework): used to deploy the Entity Framework artifacts CodeAnalysisDictionary: An XML file containing custom word dictionary for spelling rules
推荐文章
- Visual Studio: ContextSwitchDeadlock
- Visual Studio:如何打破处理异常?
- VS 2017 Git本地提交数据库。每次提交时锁定错误
- 无法启动IIS Express Web服务器,注册URL失败,访问被拒绝
- 如何下载Visual Studio社区版2015(不是2017)
- 查找和替换-添加回车符或换行符
- Visual Studio Community和其他付费版本的区别是什么?
- "输出类型为类库的项目不能直接启动"
- “无法在证书存储区中找到清单签名证书”-即使添加了新密钥
- 目标文件中无法解析的外部符号
- Visual Studio移动项目到不同的文件夹
- 如何在。net中创建和使用资源
- 如何在没有任何错误或警告的情况下找到构建失败的原因
- Visual Studio弹出提示:“操作无法完成”
- 为什么我在我的Excel插件中得到“无法在证书存储中找到清单签名证书”?