温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:HeroBeastControls的NavMenu导航控件Demo及源码
当前文件路径:HeroBeastControlsNavMenu/NavMenu/NavMenu.csproj

1<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 2
<PropertyGroup> 3
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 4
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 5
<ProductVersion>8.0.50727</ProductVersion> 6
<SchemaVersion>2.0</SchemaVersion> 7
<ProjectGuid>{BDB27697-A4C4-43E9-BC90-FB9143691C09}</ProjectGuid> 8
<OutputType>Library</OutputType> 9
<AppDesignerFolder>Properties</AppDesignerFolder> 10
<RootNamespace>NavMenu</RootNamespace> 11
<AssemblyName>NavMenu</AssemblyName> 12
<SccProjectName> 13
</SccProjectName> 14
<SccLocalPath> 15
</SccLocalPath> 16
<SccAuxPath> 17
</SccAuxPath> 18
<SccProvider> 19
</SccProvider> 20
<ApplicationIcon> 21
</ApplicationIcon> 22
</PropertyGroup> 23
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> 24
<DebugSymbols>true</DebugSymbols> 25
<DebugType>full</DebugType> 26
<Optimize>false</Optimize> 27
<OutputPath>bin\Debug\</OutputPath> 28
<DefineConstants>DEBUG;TRACE</DefineConstants> 29
<ErrorReport>prompt</ErrorReport> 30
<WarningLevel>4</WarningLevel> 31
</PropertyGroup> 32
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> 33
<DebugType>pdbonly</DebugType> 34
<Optimize>true</Optimize> 35
<OutputPath>bin\Release\</OutputPath> 36
<DefineConstants>TRACE</DefineConstants> 37
<ErrorReport>prompt</ErrorReport> 38
<WarningLevel>4</WarningLevel> 39
</PropertyGroup> 40
<ItemGroup> 41
<Reference Include="System" /> 42
<Reference Include="System.Data" /> 43
<Reference Include="System.Design" /> 44
<Reference Include="System.Drawing" /> 45
<Reference Include="System.Web" /> 46
<Reference Include="System.Xml" /> 47
</ItemGroup> 48
<ItemGroup> 49
<Compile Include="Attributes\NavMenuItem.cs" /> 50
<Compile Include="Attributes\NavMenuItems.cs" /> 51
<Compile Include="Attributes\NavMenuSubItem.cs" /> 52
<Compile Include="Attributes\NavMenuSubItems.cs" /> 53
<Compile Include="Converter\CssFilePathConverter.cs" /> 54
<Compile Include="Converter\NavMenuItemConverter.cs" /> 55
<Compile Include="Converter\NavMenuSubItemConverter.cs" /> 56
<Compile Include="Designer\NavMenuDesigner.cs" /> 57
<Compile Include="Editor\CssUrlEditor.cs" /> 58
<Compile Include="Editor\NavMenuItemEditor.cs" /> 59
<Compile Include="Editor\NavMenuSubItemEditor.cs" /> 60
<Compile Include="NavMenu.cs" /> 61
<Compile Include="Properties\AssemblyInfo.cs" /> 62
</ItemGroup> 63
<ItemGroup> 64
<EmbeddedResource Include="CSS\NavMenu.css" /> 65
<EmbeddedResource Include="Javascript\NavMenu.js" /> 66
</ItemGroup> 67
<ItemGroup> 68
<EmbeddedResource Include="NavMenu.bmp" /> 69
</ItemGroup> 70
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> 71
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. 72
Other similar extension points exist, see Microsoft.Common.targets. 73
<Target Name="BeforeBuild"> 74
</Target> 75
<Target Name="AfterBuild"> 76
</Target> 77
--> 78
</Project>



