Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit08d0c61

Browse files
committed
Add sample project created using MonoDevelop FSharpBinding 3.2.8 console app template
1 parent16c853f commit08d0c61

File tree

4 files changed

+103
-0
lines changed

4 files changed

+103
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 11.00
3+
# Visual Studio 2010
4+
Project("{4925A630-B079-445d-BCD4-3A9C94FE9307}") ="Sample_MonoDevelop_3_2_8_Console","Sample_MonoDevelop_3_2_8_Console\Sample_MonoDevelop_3_2_8_Console.fsproj","{6A6B7AF8-C2FB-4271-A1D1-0D16C3770949}"
5+
EndProject
6+
Global
7+
GlobalSection(SolutionConfigurationPlatforms) =preSolution
8+
Debug|x86=Debug|x86
9+
Release|x86=Release|x86
10+
EndGlobalSection
11+
GlobalSection(ProjectConfigurationPlatforms) =postSolution
12+
{6A6B7AF8-C2FB-4271-A1D1-0D16C3770949}.Debug|x86.ActiveCfg=Debug|x86
13+
{6A6B7AF8-C2FB-4271-A1D1-0D16C3770949}.Debug|x86.Build.0=Debug|x86
14+
{6A6B7AF8-C2FB-4271-A1D1-0D16C3770949}.Release|x86.ActiveCfg=Release|x86
15+
{6A6B7AF8-C2FB-4271-A1D1-0D16C3770949}.Release|x86.Build.0=Release|x86
16+
EndGlobalSection
17+
GlobalSection(MonoDevelopProperties) =preSolution
18+
StartupItem =Sample_MonoDevelop_3_2_8_Console\Sample_MonoDevelop_3_2_8_Console.fsproj
19+
EndGlobalSection
20+
EndGlobal
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
moduleSample_MonoDevelop_3_2_8_Console.AssemblyInfo
2+
openSystem.Reflection
3+
openSystem.Runtime.CompilerServices
4+
5+
6+
[<assembly: AssemblyTitle("Sample_MonoDevelop_3_2_8_Console")>]
7+
[<assembly: AssemblyDescription("")>]
8+
[<assembly: AssemblyConfiguration("")>]
9+
[<assembly: AssemblyCompany("")>]
10+
[<assembly: AssemblyProduct("")>]
11+
[<assembly: AssemblyCopyright("dsyme")>]
12+
[<assembly: AssemblyTrademark("")>]
13+
14+
// The assembly version has the format {Major}.{Minor}.{Build}.{Revision}
15+
16+
[<assembly: AssemblyVersion("1.0.0.0")>]
17+
18+
//[<assembly: AssemblyDelaySign(false)>]
19+
//[<assembly: AssemblyKeyFile("")>]
20+
21+
()
22+
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
// NOTE: If warnings appear, you may need to retarget this project to .NET 4.0. Show the Solution
3+
// Pad, right-click on the project node, choose 'Options --> Build --> General' and change the target
4+
// framework to .NET 4.0 or .NET 4.5.
5+
6+
moduleSample_MonoDevelop_3_2_8_Console.Main
7+
8+
openSystem
9+
10+
letsomeFunction x y= x+ y
11+
12+
[<EntryPoint>]
13+
letmain args=
14+
Console.WriteLine("Hello world!")
15+
0
16+
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<ProjectDefaultTargets="Build"ToolsVersion="4.0"xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<ConfigurationCondition=" '$(Configuration)' == ''">Debug</Configuration>
5+
<PlatformCondition=" '$(Platform)' == ''">x86</Platform>
6+
<ProductVersion>10.0.0</ProductVersion>
7+
<SchemaVersion>2.0</SchemaVersion>
8+
<ProjectGuid>{6A6B7AF8-C2FB-4271-A1D1-0D16C3770949}</ProjectGuid>
9+
<OutputType>Exe</OutputType>
10+
<RootNamespace>Sample_MonoDevelop_3_2_8_Console</RootNamespace>
11+
<AssemblyName>Sample_MonoDevelop_3_2_8_Console</AssemblyName>
12+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13+
</PropertyGroup>
14+
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'Debug|x86'">
15+
<DebugSymbols>true</DebugSymbols>
16+
<DebugType>full</DebugType>
17+
<OutputPath>bin\Debug</OutputPath>
18+
<DefineConstants>DEBUG</DefineConstants>
19+
<ErrorReport>prompt</ErrorReport>
20+
<Externalconsole>True</Externalconsole>
21+
<PlatformTarget>x86</PlatformTarget>
22+
</PropertyGroup>
23+
<PropertyGroupCondition=" '$(Configuration)|$(Platform)' == 'Release|x86'">
24+
<DebugSymbols>true</DebugSymbols>
25+
<DebugType>pdbonly</DebugType>
26+
<Optimize>true</Optimize>
27+
<OutputPath>bin\Release</OutputPath>
28+
<ErrorReport>prompt</ErrorReport>
29+
<Externalconsole>True</Externalconsole>
30+
<PlatformTarget>x86</PlatformTarget>
31+
<Tailcalls>true</Tailcalls>
32+
</PropertyGroup>
33+
<ItemGroup>
34+
<ReferenceInclude="mscorlib" />
35+
<ReferenceInclude="FSharp.Core, Version=4.3.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
36+
<ReferenceInclude="System" />
37+
<ReferenceInclude="System.Core" />
38+
<ReferenceInclude="System.Numerics" />
39+
</ItemGroup>
40+
<ItemGroup>
41+
<CompileInclude="AssemblyInfo.fs" />
42+
<CompileInclude="Program.fs" />
43+
</ItemGroup>
44+
<ImportProject="$(MSBuildExtensionsPath32)\..\Microsoft F#\v4.0\Microsoft.FSharp.Targets" />
45+
</Project>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp