8 changed files with 105 additions and 0 deletions
After Width: | Height: | Size: 1.7 KiB |
@ -0,0 +1,44 @@ |
|||||||
|
<?xml version="1.0"?> |
||||||
|
<Template originator = "Matt Ward" |
||||||
|
created = "15/06/2013" |
||||||
|
lastModified = "15/06/2013"> |
||||||
|
|
||||||
|
<!-- Template Header --> |
||||||
|
<TemplateConfiguration> |
||||||
|
<Name>F# 2.0 ${res:Templates.Project.ClassLibrary.Name}</Name> |
||||||
|
<Category>F#</Category> |
||||||
|
<Icon>F#.Project.Library</Icon> |
||||||
|
<Description>${res:Templates.Project.ClassLibrary.Description}</Description> |
||||||
|
</TemplateConfiguration> |
||||||
|
|
||||||
|
<!-- Actions --> |
||||||
|
<Actions> |
||||||
|
<Open filename = "library.fs"/> |
||||||
|
</Actions> |
||||||
|
|
||||||
|
<!-- Template Content --> |
||||||
|
<Project language = "F#"> |
||||||
|
|
||||||
|
<ProjectItems> |
||||||
|
<Reference Include="FSharp.Core" /> |
||||||
|
</ProjectItems> |
||||||
|
|
||||||
|
<PropertyGroup> |
||||||
|
<OutputType>Library</OutputType> |
||||||
|
</PropertyGroup> |
||||||
|
|
||||||
|
<Imports clear="True"> |
||||||
|
<Import Project="$(MSBuildExtensionsPath32)\..\Microsoft F#\v4.0\Microsoft.FSharp.Targets" /> |
||||||
|
</Imports> |
||||||
|
|
||||||
|
<Files> |
||||||
|
<File name="library.fs"><![CDATA[#light |
||||||
|
namespace ${StandardNamespace} |
||||||
|
|
||||||
|
type Class1() = |
||||||
|
member this.Name = "Class1" |
||||||
|
|
||||||
|
]]></File> |
||||||
|
</Files> |
||||||
|
</Project> |
||||||
|
</Template> |
@ -0,0 +1,46 @@ |
|||||||
|
<?xml version="1.0"?> |
||||||
|
<Template originator = "Matt Ward" |
||||||
|
created = "15/06/2013" |
||||||
|
lastModified = "15/06/2013"> |
||||||
|
|
||||||
|
<!-- Template Header --> |
||||||
|
<TemplateConfiguration> |
||||||
|
<Name>F# 3.0 ${res:Templates.Project.ClassLibrary.Name}</Name> |
||||||
|
<Category>F#</Category> |
||||||
|
<Icon>F#.Project.Library</Icon> |
||||||
|
<Description>${res:Templates.Project.ClassLibrary.Description}</Description> |
||||||
|
</TemplateConfiguration> |
||||||
|
|
||||||
|
<!-- Actions --> |
||||||
|
<Actions> |
||||||
|
<Open filename = "library.fs"/> |
||||||
|
</Actions> |
||||||
|
|
||||||
|
<!-- Template Content --> |
||||||
|
<Project language = "F#"> |
||||||
|
|
||||||
|
<ProjectItems> |
||||||
|
<Reference Include="FSharp.Core, Version=4.3.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> |
||||||
|
<Private>True</Private> |
||||||
|
</Reference> |
||||||
|
</ProjectItems> |
||||||
|
|
||||||
|
<PropertyGroup> |
||||||
|
<OutputType>Library</OutputType> |
||||||
|
</PropertyGroup> |
||||||
|
|
||||||
|
<Imports clear="True"> |
||||||
|
<Import Project="$(MSBuildExtensionsPath32)\..\Microsoft SDKs\F#\3.0\Framework\v4.0\Microsoft.FSharp.Targets" /> |
||||||
|
</Imports> |
||||||
|
|
||||||
|
<Files> |
||||||
|
<File name="library.fs"><![CDATA[#light |
||||||
|
namespace ${StandardNamespace} |
||||||
|
|
||||||
|
type Class1() = |
||||||
|
member this.Name = "Class1" |
||||||
|
|
||||||
|
]]></File> |
||||||
|
</Files> |
||||||
|
</Project> |
||||||
|
</Template> |
Binary file not shown.
Loading…
Reference in new issue