public
Description: A simple language for defining todo lists, using the Mg (or MGrammar) language, from Microsoft's Oslo platform.
Homepage:
Clone URL: git://github.com/m4dc4p/mg-todo.git
mg-todo / TodoPlugin / TodoPlugin.csproj
100755 92 lines (92 sloc) 4.4 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>9.0.30729</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{C84EC929-72CE-4B13-B258-B86527D221D6}</ProjectGuid>
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>ToDo</RootNamespace>
    <AssemblyName>ToDo</AssemblyName>
    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
    <FileAlignment>512</FileAlignment>
    <MBinaries32Path Condition="'$(CsaExportPath)'!=''">$(CsaExportPath)\Compilers</MBinaries32Path>
    <MBinaries32Path Condition="'$(MBinaries32Path)'==''">$(ProgramFiles)\Microsoft Oslo SDK 1.0\Bin</MBinaries32Path>
    <MGrammarTargetsPath Condition="'$(MGrammarTargetsPath)'==''">$(ProgramFiles)\MsBuild\Microsoft\M\Grammar\v1.0</MGrammarTargetsPath>
    <MgTarget>Mgx</MgTarget>
  </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>
  <ItemGroup>
    <Reference Include="PresentationCore">
      <RequiredTargetFramework>3.0</RequiredTargetFramework>
    </Reference>
    <Reference Include="PresentationFramework">
      <RequiredTargetFramework>3.0</RequiredTargetFramework>
    </Reference>
    <Reference Include="PresentationFramework.Aero">
      <RequiredTargetFramework>3.0</RequiredTargetFramework>
    </Reference>
    <Reference Include="System" />
    <Reference Include="System.Core">
      <RequiredTargetFramework>3.5</RequiredTargetFramework>
    </Reference>
    <Reference Include="WindowsBase">
      <RequiredTargetFramework>3.0</RequiredTargetFramework>
    </Reference>
    <Reference Include="$(MBinaries32Path)\Intellipad\ComponentModel.dll" />
    <Reference Include="$(MBinaries32Path)\Intellipad\Microsoft.Intellipad.Framework.dll" />
    <Reference Include="$(MBinaries32Path)\Intellipad\Microsoft.Intellipad.Core.dll" />
    <Reference Include="$(MBinaries32Path)\Intellipad\Microsoft.VisualStudio.Platform.Editor.dll" />
    <Reference Include="$(MBinaries32Path)\Microsoft.M.Grammar.dll" />
    <Reference Include="$(MBinaries32Path)\System.Dataflow.dll" />
    <Reference Include="$(MBinaries32Path)\Xaml.dll" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Properties\AssemblyInfo.cs" />
    <Compile Include="ToDoMode.cs" />
  </ItemGroup>
  <ItemGroup>
    <Content Include="ToDoCommands.py">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </Content>
  </ItemGroup>
  <ItemGroup>
    <MgCompile Include="todo4.mg" />
  </ItemGroup>
  <ItemGroup>
    <None Include="todo4.todo" />
  </ItemGroup>
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  <Import Project="$(MGrammarTargetsPath)\Microsoft.M.Grammar.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>
  -->
  <PropertyGroup>
    <PostBuildEvent>REM xcopy "$(TargetPath)" "C:\Program Files\Microsoft Oslo SDK 1.0\Bin\Intellipad\Components\ToDo" /S /D /I /Y
REM xcopy "$(TargetDir)*.py" "C:\Program Files\Microsoft Oslo SDK 1.0\Bin\Intellipad\Components\ToDo" /S /D /I /Y
REM xcopy "$(TargetDir)Microsoft.M.Grammar.dll" "C:\Program Files\Microsoft Oslo SDK 1.0\Bin\Intellipad\Components\ToDo" /S /D /I /Y
</PostBuildEvent>
  </PropertyGroup>
</Project>