mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 21:01:35 +08:00
119 lines
5.2 KiB
XML
119 lines
5.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ProductVersion>
|
|
</ProductVersion>
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
<ProjectGuid>{4BE4EB01-AC56-4048-924E-2CA77F509ABA}</ProjectGuid>
|
|
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
|
|
<OutputType>Library</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>Orchard.Search</RootNamespace>
|
|
<AssemblyName>Orchard.Search</AssemblyName>
|
|
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
|
<MvcBuildViews>false</MvcBuildViews>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>bin\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<CodeAnalysisRuleSet>..\..\..\OrchardBasicCorrectness.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<DebugType>pdbonly</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>bin\</OutputPath>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.CSharp" />
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Core">
|
|
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
|
</Reference>
|
|
<Reference Include="System.Web.Mvc">
|
|
<HintPath>..\..\..\..\lib\aspnetmvc\System.Web.Mvc.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="System.Web" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Drivers\SearchFormPartDriver.cs" />
|
|
<Compile Include="Models\SearchFormPart.cs" />
|
|
<Compile Include="ResourceManifest.cs" />
|
|
<Compile Include="Controllers\SearchController.cs" />
|
|
<Compile Include="Migrations.cs" />
|
|
<Compile Include="Drivers\SearchSettingsPartDriver.cs" />
|
|
<Compile Include="Models\SearchSettingsPart.cs" />
|
|
<Compile Include="Models\SearchSettingsPartRecord.cs" />
|
|
<Compile Include="Routes.cs" />
|
|
<Compile Include="Handlers\SearchSettingsPartHandler.cs" />
|
|
<Compile Include="Services\ISearchService.cs" />
|
|
<Compile Include="Services\SearchService.cs" />
|
|
<Compile Include="ViewModels\SearchSettingsViewModel.cs" />
|
|
<Compile Include="ViewModels\SearchResultViewModel.cs" />
|
|
<Compile Include="ViewModels\SearchViewModel.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\Orchard\Orchard.Framework.csproj">
|
|
<Project>{2D1D92BB-4555-4CBE-8D0E-63563D6CE4C6}</Project>
|
|
<Name>Orchard.Framework</Name>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="Module.txt" />
|
|
<Content Include="Styles\orchard-search-admin.css" />
|
|
<Content Include="Styles\orchard-search-search.css" />
|
|
<Content Include="Views\Web.config" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="Views\EditorTemplates\Parts\Search.SiteSettings.cshtml" />
|
|
<Content Include="Views\Search\Index.cshtml" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="Views\Parts\Search.SearchForm.cshtml" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="Placement.info" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="Styles\Web.config">
|
|
<SubType>Designer</SubType>
|
|
</Content>
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
|
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" />
|
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|
Other similar extension points exist, see Microsoft.Common.targets.
|
|
<Target Name="BeforeBuild">
|
|
</Target> -->
|
|
<Target Name="AfterBuild" Condition="'$(MvcBuildViews)'=='true'">
|
|
<AspNetCompiler VirtualPath="temp" PhysicalPath="$(ProjectDir)" />
|
|
</Target>
|
|
<ProjectExtensions>
|
|
<VisualStudio>
|
|
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
|
|
<WebProjectProperties>
|
|
<UseIIS>False</UseIIS>
|
|
<AutoAssignPort>True</AutoAssignPort>
|
|
<DevelopmentServerPort>47866</DevelopmentServerPort>
|
|
<DevelopmentServerVPath>/</DevelopmentServerVPath>
|
|
<IISUrl>
|
|
</IISUrl>
|
|
<NTLMAuthentication>False</NTLMAuthentication>
|
|
<UseCustomServer>True</UseCustomServer>
|
|
<CustomServerUrl>http://orchard.codeplex.com</CustomServerUrl>
|
|
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
|
|
</WebProjectProperties>
|
|
</FlavorProperties>
|
|
</VisualStudio>
|
|
</ProjectExtensions>
|
|
</Project> |