Click here to Skip to main content
15,895,799 members
Articles / Web Development / HTML

Using DayPilot (Outlook-Like Calendar/Scheduling Control for ASP.NET)

Rate me:
Please Sign up or sign in to vote.
4.83/5 (64 votes)
30 Mar 2015Apache7 min read 368.1K   4.2K   286  
Showing the features of a flexible ASP.NET event calendar/scheduling control.
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>9.0.21022</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{5D7983A4-CCFF-46F6-920F-F184A031D7E1}</ProjectGuid>
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>DayPilot</RootNamespace>
    <AssemblyName>DayPilot</AssemblyName>
    <FileUpgradeFlags>
    </FileUpgradeFlags>
    <OldToolsVersion>3.5</OldToolsVersion>
    <UpgradeBackupLocation>
    </UpgradeBackupLocation>
    <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>bin\Debug\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>bin\Release\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup>
    <SignAssembly>false</SignAssembly>
  </PropertyGroup>
  <PropertyGroup>
    <AssemblyOriginatorKeyFile>daypilotlite.snk</AssemblyOriginatorKeyFile>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.Data" />
    <Reference Include="System.Design" />
    <Reference Include="System.Drawing" />
    <Reference Include="System.Web" />
    <Reference Include="System.Xml" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Properties\AssemblyInfo.cs" />
    <Compile Include="Utils\Encoder.cs" />
    <Compile Include="Utils\TimeFormatter.cs" />
    <Compile Include="Utils\Week.cs" />
    <Compile Include="Web\Ui\Ajax\ScriptManagerHelper.cs" />
    <Compile Include="Web\Ui\Block.cs" />
    <Compile Include="Web\Ui\Column.cs" />
    <Compile Include="Web\Ui\RowHeaderColumn.cs" />
    <Compile Include="Web\Ui\RowHeaderColumnCollection.cs" />
    <Compile Include="Web\Ui\Data\TitleCollectionParser.cs" />
    <Compile Include="Web\Ui\Data\DataItemWrapper.cs" />
    <Compile Include="Web\Ui\Data\WidthCollectionParser.cs" />
    <Compile Include="Web\Ui\Day.cs" />
    <Compile Include="Web\Ui\DayPilotCalendar.cs" />
    <Compile Include="Web\Ui\DayPilotScheduler.cs" />
    <Compile Include="Web\Ui\Design\DayPilotCalendarDesigner.cs" />
    <Compile Include="Web\Ui\Enums\GroupByEnum.cs" />
    <Compile Include="Web\Ui\Enums\HeightSpecEnum.cs" />
    <Compile Include="Web\Ui\Enums\TimeRangeSelectedHandling.cs" />
    <Compile Include="Web\Ui\Enums\EventClickHandlingEnum.cs" />
    <Compile Include="Web\Ui\Enums\Scheduler\ViewTypeEnum.cs" />
    <Compile Include="Web\Ui\Event.cs" />
    <Compile Include="Web\Ui\EventComparer.cs" />
    <Compile Include="Web\Ui\Events\BeforeHeaderRender.cs" />
    <Compile Include="Web\Ui\Events\Calendar\BeforeEventRender.cs" />
    <Compile Include="Web\Ui\Events\EventClickEvent.cs" />
    <Compile Include="Web\Ui\Events\Scheduler\BeforeEventRender.cs" />
    <Compile Include="Web\Ui\Events\Scheduler\RowHeaderColumnWidthChanged.cs" />
    <Compile Include="Web\Ui\Events\TimeRangeSelectedEvent.cs" />
    <Compile Include="Web\Ui\Resource.cs" />
    <Compile Include="Web\Ui\ResourceCollection.cs" />
    <Compile Include="Web\Ui\ResourceColumn.cs" />
    <Compile Include="Web\Ui\Serialization\RowHeaderColumnCollectionConverter.cs" />
    <Compile Include="Web\Ui\Serialization\ResourceCollectionConverter.cs" />
    <Compile Include="Web\Ui\Enums\TimeFormat.cs" />
  </ItemGroup>
  <ItemGroup>
    <EmbeddedResource Include="Resources\Splitter.js" />
  </ItemGroup>
  <ItemGroup>
    <None Include="daypilotlite.snk" />
  </ItemGroup>
  <ItemGroup>
    <EmbeddedResource Include="Resources\Themes.js" />
  </ItemGroup>
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.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">
  </Target>
  -->
</Project>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Apache License, Version 2.0


Written By
Czech Republic Czech Republic
My open-source event calendar/scheduling web UI components:

DayPilot for JavaScript, Angular, React and Vue

Comments and Discussions