मुझे इन समाधानों के साथ समस्या थी, संभवतः क्योंकि मेरे प्रारंभिक स्थिरांक इन गुणों द्वारा पूर्व-निर्मित थे।
<DefineConstants />
<DefineDebug>true</DefineDebug>
<DefineTrace>true</DefineTrace>
<DebugSymbols>true</DebugSymbols>
दृश्य स्टूडियो 2010 ने अर्ध-कॉलनों के कारण एक त्रुटि भी दर्ज की, यह दावा करते हुए कि वे अवैध चरित्र हैं। त्रुटि संदेश ने मुझे संकेत दिया क्योंकि मैं पूर्व-निर्मित स्थिरांक को अल्पविरामों से अलग देख सकता था, अंत में मेरे "अवैध" अर्ध-उपनिवेश के बाद। कुछ सुधार और मालिश के बाद मैं एक समाधान के साथ आने में सक्षम था जो मेरे लिए काम करता है।
<PropertyGroup>
<!-- Adding a custom constant will auto-magically append a comma and space to the pre-built constants. -->
<!-- Move the comma delimiter to the end of each constant and remove the trailing comma when we're done. -->
<DefineConstants Condition=" !$(DefineConstants.Contains(', NET')) ">$(DefineConstants)$(TargetFrameworkVersion.Replace("v", "NET").Replace(".", "")), </DefineConstants>
<DefineConstants Condition=" $(DefineConstants.Contains(', NET')) ">$(DefineConstants.Remove($(DefineConstants.LastIndexOf(", NET"))))$(TargetFrameworkVersion.Replace("v", "NET").Replace(".", "")), </DefineConstants>
<DefineConstants Condition=" $(TargetFrameworkVersion.Replace('v', '')) >= 2.0 ">$(DefineConstants)NET_20_OR_GREATER, </DefineConstants>
<DefineConstants Condition=" $(TargetFrameworkVersion.Replace('v', '')) >= 3.5 ">$(DefineConstants)NET_35_OR_GREATER</DefineConstants>
<DefineConstants Condition=" $(DefineConstants.EndsWith(', ')) ">$(DefineConstants.Remove($(DefineConstants.LastIndexOf(", "))))</DefineConstants>
</PropertyGroup>
मैं आपके प्रोजेक्ट के कंपाइल टैब पर एडवांस्ड कंपाइलर सेटिंग्स डायलॉग ("एडवांस्ड कंपाइल ऑप्शन्स ..." बटन पर क्लिक करके) का स्क्रीनशॉट पोस्ट करूँगा। लेकिन एक नए उपयोगकर्ता के रूप में, मुझे ऐसा करने के लिए प्रतिनिधि की कमी है। यदि आप स्क्रीनशॉट देख सकते हैं, तो आपको प्रॉपर्टी ग्रुप द्वारा कस्टम कॉन्स्टेंट ऑटो-भरे हुए दिखाई देंगे और फिर आप कहेंगे, "मुझे इसमें से कुछ मिलेगा।"
संपादित करें: आश्चर्य की बात है कि तेजी से प्रतिनिधि मिल गया .. धन्यवाद दोस्तों! यहाँ है कि स्क्रीनशॉट: