summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalVisualStudio71Generator.cxx
diff options
context:
space:
mode:
authorMichael Stürmer <michael.stuermer@schaeffler.com>2018-03-19 20:15:02 (GMT)
committerMichael Stürmer <michael.stuermer@schaeffler.com>2018-04-23 05:31:21 (GMT)
commitf9042d807db3264772dc08452195809b1f7a3a0c (patch)
treee1ff9fa588889cfe30a721a0fdba0409c78ff618 /Source/cmGlobalVisualStudio71Generator.cxx
parent709277640b577adc98bd2cead613b3c79a5546dd (diff)
downloadCMake-f9042d807db3264772dc08452195809b1f7a3a0c.zip
CMake-f9042d807db3264772dc08452195809b1f7a3a0c.tar.gz
CMake-f9042d807db3264772dc08452195809b1f7a3a0c.tar.bz2
remove TargetIsCSharpOnly() and use methods from cmGeneratorTarget
Diffstat (limited to 'Source/cmGlobalVisualStudio71Generator.cxx')
-rw-r--r--Source/cmGlobalVisualStudio71Generator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio71Generator.cxx b/Source/cmGlobalVisualStudio71Generator.cxx
index 45cc583..0b086b0 100644
--- a/Source/cmGlobalVisualStudio71Generator.cxx
+++ b/Source/cmGlobalVisualStudio71Generator.cxx
@@ -98,7 +98,7 @@ void cmGlobalVisualStudio71Generator::WriteProject(std::ostream& fout,
ext = ".vfproj";
project = "Project(\"{6989167D-11E4-40FE-8C1A-2192A86A7E90}\") = \"";
}
- if (this->TargetIsCSharpOnly(t)) {
+ if (t->HasLanguage("CSharp", "")) {
ext = ".csproj";
project = "Project(\"{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}\") = \"";
}