diff options
author | Michael Stürmer <michael.stuermer@schaeffler.com> | 2017-01-17 15:09:38 (GMT) |
---|---|---|
committer | Michael Stürmer <michael.stuermer@schaeffler.com> | 2017-01-18 14:51:22 (GMT) |
commit | 90cb40832375fa880b792ca9bf5cdd3071912f9d (patch) | |
tree | b3611ff2d49746cf01caee5c0407b3918e9034d6 /Help/prop_sf | |
parent | cab8f26211051a24ceb0e512660f022c9960f241 (diff) | |
download | CMake-90cb40832375fa880b792ca9bf5cdd3071912f9d.zip CMake-90cb40832375fa880b792ca9bf5cdd3071912f9d.tar.gz CMake-90cb40832375fa880b792ca9bf5cdd3071912f9d.tar.bz2 |
VS: improve handling of source files with special extensions in .csproj
Mainly <Link> and <DependentUpon> tags are added to connect generated
and manually edited files. Special file extensions that are take care
of are:
- .Designer.cs
- .xaml.cs
- .settings
- .resx
- .xaml
Diffstat (limited to 'Help/prop_sf')
-rw-r--r-- | Help/prop_sf/VS_COPY_TO_OUT_DIR.rst | 6 | ||||
-rw-r--r-- | Help/prop_sf/VS_INCLUDE_IN_VSIX.rst | 6 | ||||
-rw-r--r-- | Help/prop_sf/VS_RESOURCE_GENERATOR.rst | 8 |
3 files changed, 20 insertions, 0 deletions
diff --git a/Help/prop_sf/VS_COPY_TO_OUT_DIR.rst b/Help/prop_sf/VS_COPY_TO_OUT_DIR.rst new file mode 100644 index 0000000..16c8d83 --- /dev/null +++ b/Help/prop_sf/VS_COPY_TO_OUT_DIR.rst @@ -0,0 +1,6 @@ +VS_COPY_TO_OUT_DIR +------------------ + +Sets the ``<CopyToOutputDirectory>`` tag for a source file in a +Visual Studio project file. Valid values are ``Never``, ``Always`` +and ``PreserveNewest``. diff --git a/Help/prop_sf/VS_INCLUDE_IN_VSIX.rst b/Help/prop_sf/VS_INCLUDE_IN_VSIX.rst new file mode 100644 index 0000000..30f471d --- /dev/null +++ b/Help/prop_sf/VS_INCLUDE_IN_VSIX.rst @@ -0,0 +1,6 @@ +VS_INCLUDE_IN_VSIX +------------------ + +Boolean property to specify if the file should be included within a VSIX +extension package. This is needed for development of Visual Studio +extensions. diff --git a/Help/prop_sf/VS_RESOURCE_GENERATOR.rst b/Help/prop_sf/VS_RESOURCE_GENERATOR.rst new file mode 100644 index 0000000..97e5aac --- /dev/null +++ b/Help/prop_sf/VS_RESOURCE_GENERATOR.rst @@ -0,0 +1,8 @@ +VS_RESOURCE_GENERATOR +--------------------- + +This property allows to specify the resource generator to be used +on this file. It defaults to ``PublicResXFileCodeGenerator`` if +not set. + +This property only applies to C# projects. |