Skip to content

Commit 6f60d36

Browse files
committed
Project: rename the assemblies, add Naggum.Assembler.
1 parent 6f9d69e commit 6f60d36

26 files changed

+135
-19
lines changed

Naggum.Assembler/App.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
5+
</startup>
6+
</configuration>

Naggum.Assembler/AssemblyInfo.fs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
namespace Naggum.Assembler.AssemblyInfo
2+
3+
open System.Reflection
4+
open System.Runtime.InteropServices
5+
6+
[<assembly: AssemblyTitle("Naggum.Assembler")>]
7+
[<assembly: AssemblyProduct("Naggum")>]
8+
[<assembly: AssemblyCopyright("Copyright © Codingteam 2015")>]
9+
[<assembly: ComVisible(false)>]
10+
[<assembly: Guid("40b84f1e-1823-4255-80d4-1297613025c1")>]
11+
[<assembly: AssemblyVersion("0.0.1.0")>]
12+
13+
()
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<SchemaVersion>2.0</SchemaVersion>
8+
<ProjectGuid>40b84f1e-1823-4255-80d4-1297613025c1</ProjectGuid>
9+
<OutputType>Exe</OutputType>
10+
<RootNamespace>Naggum.Assembler</RootNamespace>
11+
<AssemblyName>Naggum.Assembler</AssemblyName>
12+
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
13+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14+
<TargetFSharpCoreVersion>4.4.0.0</TargetFSharpCoreVersion>
15+
<Name>Naggum.Assembler</Name>
16+
<TargetFrameworkProfile />
17+
</PropertyGroup>
18+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19+
<DebugSymbols>true</DebugSymbols>
20+
<DebugType>full</DebugType>
21+
<Optimize>false</Optimize>
22+
<Tailcalls>false</Tailcalls>
23+
<OutputPath>bin\Debug\</OutputPath>
24+
<DefineConstants>DEBUG;TRACE</DefineConstants>
25+
<WarningLevel>3</WarningLevel>
26+
<PlatformTarget>AnyCPU</PlatformTarget>
27+
<DocumentationFile>bin\Debug\Naggum.Assembler.XML</DocumentationFile>
28+
<Prefer32Bit>true</Prefer32Bit>
29+
</PropertyGroup>
30+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
31+
<DebugType>pdbonly</DebugType>
32+
<Optimize>true</Optimize>
33+
<Tailcalls>true</Tailcalls>
34+
<OutputPath>bin\Release\</OutputPath>
35+
<DefineConstants>TRACE</DefineConstants>
36+
<WarningLevel>3</WarningLevel>
37+
<PlatformTarget>AnyCPU</PlatformTarget>
38+
<DocumentationFile>bin\Release\Naggum.Assembler.XML</DocumentationFile>
39+
<Prefer32Bit>true</Prefer32Bit>
40+
</PropertyGroup>
41+
<ItemGroup>
42+
<Reference Include="mscorlib" />
43+
<Reference Include="FSharp.Core, Version=$(TargetFSharpCoreVersion), Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
44+
<Private>True</Private>
45+
</Reference>
46+
<Reference Include="System" />
47+
<Reference Include="System.Core" />
48+
<Reference Include="System.Numerics" />
49+
</ItemGroup>
50+
<ItemGroup>
51+
<Compile Include="AssemblyInfo.fs" />
52+
<Compile Include="Program.fs" />
53+
<None Include="App.config" />
54+
</ItemGroup>
55+
<PropertyGroup>
56+
<MinimumVisualStudioVersion Condition="'$(MinimumVisualStudioVersion)' == ''">11</MinimumVisualStudioVersion>
57+
</PropertyGroup>
58+
<Choose>
59+
<When Condition="'$(VisualStudioVersion)' == '11.0'">
60+
<PropertyGroup Condition="Exists('$(MSBuildExtensionsPath32)\..\Microsoft SDKs\F#\3.0\Framework\v4.0\Microsoft.FSharp.Targets')">
61+
<FSharpTargetsPath>$(MSBuildExtensionsPath32)\..\Microsoft SDKs\F#\3.0\Framework\v4.0\Microsoft.FSharp.Targets</FSharpTargetsPath>
62+
</PropertyGroup>
63+
</When>
64+
<Otherwise>
65+
<PropertyGroup Condition="Exists('$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\FSharp\Microsoft.FSharp.Targets')">
66+
<FSharpTargetsPath>$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\FSharp\Microsoft.FSharp.Targets</FSharpTargetsPath>
67+
</PropertyGroup>
68+
</Otherwise>
69+
</Choose>
70+
<Import Project="$(FSharpTargetsPath)" />
71+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
72+
Other similar extension points exist, see Microsoft.Common.targets.
73+
<Target Name="BeforeBuild">
74+
</Target>
75+
<Target Name="AfterBuild">
76+
</Target>
77+
-->
78+
</Project>

Naggum.Assembler/Program.fs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
module Naggum.Assembler.Program
2+
3+
open System.Reflection
4+
5+
let printUsage () =
6+
let version = Assembly.GetExecutingAssembly().GetName().Version
7+
printfn "Naggum Assembler %A" version
8+
9+
[<EntryPoint>]
10+
let main _ =
11+
printUsage ()
12+
0
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)