~bratsche/ubuntu/maverick/monodevelop/disable-appmenu

« back to all changes in this revision

Viewing changes to src/addins/MonoDevelop.Moonlight/Templates/Moonlight-ApplicationXaml.xft.xml

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields, Jo Shields, Iain Lane
  • Date: 2009-04-02 20:50:18 UTC
  • mfrom: (1.2.3 upstream) (1.1.14 sid)
  • Revision ID: james.westby@ubuntu.com-20090402205018-2ehhq89bo5eeajli
Tags: 2.0+dfsg-1~ubuntu1
[ Jo Shields ]
* New upstream release
* DFSG version of MonoDevelop 2.0
  (deleted all pre-compiled binaries from the tarball)
  + For the record here a list of the deleted files:
    src/addins/NUnit/lib/nunit.framework.dll
    src/addins/NUnit/lib/nunit.core.dll
    src/addins/NUnit/lib/nunit.util.dll
    src/addins/NUnit/lib/nunit.core.interfaces.dll
* debian/control:
  + Tweak build-deps to allow building against libgconf2.24-cil due to 
    broken ABI bump in Ubuntu
* debian/patches/update_templates_for_gtk-sharp_2.10.dpatch,
  debian/patches/update_templates_for_gtk-sharp_2.12.dpatch:
  + Refresh patch to ensure new projects are created using the correct
    version of GTK#

[ Iain Lane ]
* Upload from pkg-cli-apps SVN into Ubuntu; delayed in sid due to transition
  constraints. (LP: #353300)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0"?>
2
 
<Template originator="Michael Hutchinson"
3
 
          created="2008/03/04"
4
 
          lastModified="2008/03/04">
5
 
 
6
 
        <!-- Template Header -->
7
 
        <TemplateConfiguration>
8
 
                <_Name>Moonlight Application</_Name>
9
 
                <Icon>md-html-file-icon</Icon>
10
 
                <_Category>Moonlight</_Category>
11
 
                <LanguageName>*</LanguageName>
12
 
                <ProjectType>Moonlight</ProjectType>
13
 
                <_Description>Creates a Moonlight/Silverlight Application with a CodeBehind class.</_Description>
14
 
        </TemplateConfiguration>
15
 
        
16
 
        <Conditions>
17
 
        </Conditions>
18
 
        
19
 
        <!-- Template Content -->
20
 
        <TemplateFiles>
21
 
                <File name="${Name}.xaml" DefaultExtension=".xaml" BuildAction="ApplicationDefinition">
22
 
<![CDATA[<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
23
 
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
24
 
             x:Class="${Namespace}.${Name}"
25
 
>
26
 
        <Application.Resources>
27
 
        </Application.Resources>
28
 
</Application>
29
 
]]></File>
30
 
                
31
 
                <CodeTranslationFile name="${Name}.xaml.${LanguageExtension}" DependsOn="${Name}.xaml" >
32
 
<![CDATA[using System;
33
 
using System.Collections.Generic;
34
 
using System.Windows;
35
 
using System.Windows.Controls;
36
 
 
37
 
namespace ${Namespace}
38
 
{
39
 
        
40
 
        public partial class ${EscapedIdentifier} : Application
41
 
        {
42
 
        
43
 
                public ${EscapedIdentifier} ()
44
 
                {
45
 
                        InitializeComponent ();
46
 
                }
47
 
                
48
 
        }
49
 
}]]>
50
 
                </CodeTranslationFile>
51
 
        </TemplateFiles>
52
 
</Template>