Fix issue with VB projects
[mono.git] / mcs / class / Microsoft.Build.Tasks / Microsoft.Build.Tasks / CreateItem.cs
index 187ca0c31f0dc9890acb51ec1303678c1816cd99..8de9dc10b5fa1ec1f38dde881903f8eae30d8d33 100644 (file)
@@ -25,7 +25,6 @@
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
-#if NET_2_0
 
 using System;
 using System.Collections.Generic;
@@ -96,13 +95,10 @@ namespace Microsoft.Build.Tasks {
                        set { include = value; }
                }
 
-#if NET_3_5
                public bool PreserveExistingMetadata {
                        get { return preserveExistingMetadata; }
                        set { preserveExistingMetadata = value; }
                }
-#endif
        }
 }
 
-#endif