Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FSharpConsoleProject.xpt.xml « Templates « MonoDevelop.FSharpBinding « fsharpbinding « external « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aee501369cd132e3e891dda03da22a89288e68b3 (plain)
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
<?xml version="1.0"?>
<Template Originator="Community" Created="10/6/2010" LastModified="10/6/2010">

  <!-- Template Header -->
  <TemplateConfiguration>
    <_Name>Console Project</_Name>
    <Icon>md-console-project</Icon>
    <Image id="md-console-project" />
    <_Description>A F# project for creating a command line application.</_Description>
    <Category>other/net/general</Category>
    <LanguageName>F#</LanguageName>
    <GroupId>md-project-console</GroupId>
  </TemplateConfiguration>

  <!-- Actions -->
  <Actions>
    <Open filename = "Program.fs"/>
  </Actions>

  <!-- Template Content -->
  <Combine name = "${ProjectName}" directory = ".">
    <Options>
      <StartupProject>${ProjectName}</StartupProject>
    </Options>

    <Project name = "${ProjectName}" directory = ".">
      <Options ExternalConsole="True" TargetFrameworkVersion="4.5.1" />
      <References>
        <Reference type="Package" refto="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
        <Reference type="Package" refto="System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
        <Reference type="Package" refto="System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
        <Reference type="Package" refto="System.Numerics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
      </References>
      <Packages requireLicenseAcceptance="false">
        <Package Id="FSharp.Core" Version="4.5.4" local="true" />
      </Packages>
      <Files>
        <FileTemplateReference TemplateID="FSharpAssemblyInfo" name="AssemblyInfo.fs" />
        <File name = "Program.fs" AddStandardHeader="True">
        <![CDATA[// Learn more about F# at http://fsharp.org
// See the 'F# Tutorial' project for more help.

[<EntryPoint>]
let main argv =
    printfn "%A" argv
    0 // return an integer exit code
]]></File>
      </Files>
    </Project>
  </Combine>
</Template>