Skip to content

Commit ffc9e38

Browse files
author
Josh Morrison
committed
Fix to remove compile warning related to .net framework 4.5.
1 parent e3cefa2 commit ffc9e38

File tree

1 file changed

+123
-112
lines changed

1 file changed

+123
-112
lines changed
Lines changed: 123 additions & 112 deletions
Original file line numberDiff line numberDiff line change
@@ -1,119 +1,130 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="4.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<PropertyGroup>
4-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6-
<ProductVersion>
7-
</ProductVersion>
8-
<SchemaVersion>2.0</SchemaVersion>
9-
<ProjectGuid>{FDFF3E98-15B8-4FAC-988C-5A61C86666CE}</ProjectGuid>
10-
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
11-
<OutputType>Library</OutputType>
12-
<AppDesignerFolder>Properties</AppDesignerFolder>
13-
<RootNamespace>RegexPlanet_DotNet</RootNamespace>
14-
<AssemblyName>RegexPlanet-DotNet</AssemblyName>
15-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
16-
<UseIISExpress>false</UseIISExpress>
17-
</PropertyGroup>
18-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19-
<DebugSymbols>true</DebugSymbols>
20-
<DebugType>full</DebugType>
21-
<Optimize>false</Optimize>
22-
<OutputPath>bin\</OutputPath>
23-
<DefineConstants>DEBUG;TRACE</DefineConstants>
24-
<ErrorReport>prompt</ErrorReport>
25-
<WarningLevel>4</WarningLevel>
26-
</PropertyGroup>
27-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28-
<DebugType>pdbonly</DebugType>
29-
<Optimize>true</Optimize>
30-
<OutputPath>bin\</OutputPath>
31-
<DefineConstants>TRACE</DefineConstants>
32-
<ErrorReport>prompt</ErrorReport>
33-
<WarningLevel>4</WarningLevel>
34-
</PropertyGroup>
35-
<ItemGroup>
36-
<Reference Include="Microsoft.CSharp" />
37-
<Reference Include="System" />
38-
<Reference Include="System.Data" />
39-
<Reference Include="System.Core" />
40-
<Reference Include="System.Data.DataSetExtensions" />
41-
<Reference Include="System.Runtime.Serialization" />
42-
<Reference Include="System.Web.Extensions" />
43-
<Reference Include="System.Xml.Linq" />
44-
<Reference Include="System.Drawing" />
45-
<Reference Include="System.Web" />
46-
<Reference Include="System.Xml" />
47-
<Reference Include="System.Configuration" />
48-
<Reference Include="System.Web.Services" />
49-
<Reference Include="System.EnterpriseServices" />
50-
<Reference Include="System.Web.DynamicData" />
51-
<Reference Include="System.Web.Entity" />
52-
<Reference Include="System.Web.ApplicationServices" />
53-
</ItemGroup>
54-
<ItemGroup>
55-
<Compile Include="Properties\AssemblyInfo.cs" />
56-
<Compile Include="Test.aspx.cs">
57-
<DependentUpon>Test.aspx</DependentUpon>
58-
<SubType>ASPXCodeBehind</SubType>
59-
</Compile>
60-
<Compile Include="Test.aspx.designer.cs">
61-
<DependentUpon>Test.aspx</DependentUpon>
62-
</Compile>
63-
<Compile Include="TestResult.cs" />
64-
<Compile Include="Status.aspx.cs">
65-
<DependentUpon>Status.aspx</DependentUpon>
66-
<SubType>ASPXCodeBehind</SubType>
67-
</Compile>
68-
<Compile Include="StatusResult.cs" />
69-
</ItemGroup>
70-
<ItemGroup>
71-
<Content Include="favicon.ico" />
72-
<Content Include="robots.txt" />
73-
<Content Include="web.config" />
74-
</ItemGroup>
75-
<ItemGroup>
76-
<Content Include="Test.aspx" />
77-
</ItemGroup>
78-
<ItemGroup>
79-
<Content Include="Status.aspx" />
80-
</ItemGroup>
81-
<ItemGroup>
82-
<Content Include="web.Debug.config">
83-
<DependentUpon>web.config</DependentUpon>
84-
</Content>
85-
</ItemGroup>
86-
<ItemGroup>
87-
<Content Include="web.Release.config">
88-
<DependentUpon>web.config</DependentUpon>
89-
</Content>
90-
</ItemGroup>
91-
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
92-
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v11.0\WebApplications\Microsoft.WebApplication.targets" />
93-
<ProjectExtensions>
94-
<VisualStudio>
95-
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
96-
<WebProjectProperties>
97-
<UseIIS>False</UseIIS>
98-
<AutoAssignPort>True</AutoAssignPort>
99-
<DevelopmentServerPort>49895</DevelopmentServerPort>
100-
<DevelopmentServerVPath>/</DevelopmentServerVPath>
101-
<IISUrl>
102-
</IISUrl>
103-
<NTLMAuthentication>False</NTLMAuthentication>
104-
<UseCustomServer>False</UseCustomServer>
105-
<CustomServerUrl>
106-
</CustomServerUrl>
107-
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
108-
</WebProjectProperties>
109-
</FlavorProperties>
110-
</VisualStudio>
111-
</ProjectExtensions>
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProductVersion>
8+
</ProductVersion>
9+
<SchemaVersion>2.0</SchemaVersion>
10+
<ProjectGuid>{FDFF3E98-15B8-4FAC-988C-5A61C86666CE}</ProjectGuid>
11+
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
12+
<OutputType>Library</OutputType>
13+
<AppDesignerFolder>Properties</AppDesignerFolder>
14+
<RootNamespace>RegexPlanet_DotNet</RootNamespace>
15+
<AssemblyName>RegexPlanet-DotNet</AssemblyName>
16+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
17+
<UseIISExpress>false</UseIISExpress>
18+
<FileUpgradeFlags>
19+
</FileUpgradeFlags>
20+
<UpgradeBackupLocation>
21+
</UpgradeBackupLocation>
22+
<OldToolsVersion>4.0</OldToolsVersion>
23+
</PropertyGroup>
24+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
25+
<DebugSymbols>true</DebugSymbols>
26+
<DebugType>full</DebugType>
27+
<Optimize>false</Optimize>
28+
<OutputPath>bin\</OutputPath>
29+
<DefineConstants>DEBUG;TRACE</DefineConstants>
30+
<ErrorReport>prompt</ErrorReport>
31+
<WarningLevel>4</WarningLevel>
32+
</PropertyGroup>
33+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
34+
<DebugType>pdbonly</DebugType>
35+
<Optimize>true</Optimize>
36+
<OutputPath>bin\</OutputPath>
37+
<DefineConstants>TRACE</DefineConstants>
38+
<ErrorReport>prompt</ErrorReport>
39+
<WarningLevel>4</WarningLevel>
40+
</PropertyGroup>
41+
<ItemGroup>
42+
<Reference Include="Microsoft.CSharp" />
43+
<Reference Include="System" />
44+
<Reference Include="System.Data" />
45+
<Reference Include="System.Core" />
46+
<Reference Include="System.Data.DataSetExtensions" />
47+
<Reference Include="System.Runtime.Serialization" />
48+
<Reference Include="System.Web.Extensions" />
49+
<Reference Include="System.Xml.Linq" />
50+
<Reference Include="System.Drawing" />
51+
<Reference Include="System.Web" />
52+
<Reference Include="System.Xml" />
53+
<Reference Include="System.Configuration" />
54+
<Reference Include="System.Web.Services" />
55+
<Reference Include="System.EnterpriseServices" />
56+
<Reference Include="System.Web.DynamicData" />
57+
<Reference Include="System.Web.Entity" />
58+
<Reference Include="System.Web.ApplicationServices" />
59+
</ItemGroup>
60+
<ItemGroup>
61+
<Compile Include="Properties\AssemblyInfo.cs" />
62+
<Compile Include="Test.aspx.cs">
63+
<DependentUpon>Test.aspx</DependentUpon>
64+
<SubType>ASPXCodeBehind</SubType>
65+
</Compile>
66+
<Compile Include="Test.aspx.designer.cs">
67+
<DependentUpon>Test.aspx</DependentUpon>
68+
</Compile>
69+
<Compile Include="TestResult.cs" />
70+
<Compile Include="Status.aspx.cs">
71+
<DependentUpon>Status.aspx</DependentUpon>
72+
<SubType>ASPXCodeBehind</SubType>
73+
</Compile>
74+
<Compile Include="StatusResult.cs" />
75+
</ItemGroup>
76+
<ItemGroup>
77+
<Content Include="favicon.ico" />
78+
<Content Include="robots.txt" />
79+
<Content Include="web.config" />
80+
</ItemGroup>
81+
<ItemGroup>
82+
<Content Include="Test.aspx" />
83+
</ItemGroup>
84+
<ItemGroup>
85+
<Content Include="Status.aspx" />
86+
</ItemGroup>
87+
<ItemGroup>
88+
<Content Include="web.Debug.config">
89+
<DependentUpon>web.config</DependentUpon>
90+
</Content>
91+
</ItemGroup>
92+
<ItemGroup>
93+
<Content Include="web.Release.config">
94+
<DependentUpon>web.config</DependentUpon>
95+
</Content>
96+
</ItemGroup>
97+
<PropertyGroup>
98+
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
99+
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
100+
</PropertyGroup>
101+
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
102+
<Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
103+
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
104+
<ProjectExtensions>
105+
<VisualStudio>
106+
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
107+
<WebProjectProperties>
108+
<UseIIS>False</UseIIS>
109+
<AutoAssignPort>True</AutoAssignPort>
110+
<DevelopmentServerPort>49895</DevelopmentServerPort>
111+
<DevelopmentServerVPath>/</DevelopmentServerVPath>
112+
<IISUrl>
113+
</IISUrl>
114+
<NTLMAuthentication>False</NTLMAuthentication>
115+
<UseCustomServer>False</UseCustomServer>
116+
<CustomServerUrl>
117+
</CustomServerUrl>
118+
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
119+
</WebProjectProperties>
120+
</FlavorProperties>
121+
</VisualStudio>
122+
</ProjectExtensions>
112123
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
113124
Other similar extension points exist, see Microsoft.Common.targets.
114125
<Target Name="BeforeBuild">
115126
</Target>
116127
<Target Name="AfterBuild">
117128
</Target>
118-
-->
129+
-->
119130
</Project>

0 commit comments

Comments
 (0)