From 1bbd1c702b735d693e5230c14256fafebe44dabe Mon Sep 17 00:00:00 2001 From: Ian C <ianc@noddybox.co.uk> Date: Mon, 27 Feb 2012 22:04:15 +0000 Subject: Added native .NET build of assemblies for testing purposes. --- .../Noddybox.Emulation.EightBit.csproj | 74 ++++++++++++++++++++++ .../Properties/AssemblyInfo.cs | 36 +++++++++++ 2 files changed, 110 insertions(+) create mode 100644 native/Noddybox.Emulation.EightBit/Noddybox.Emulation.EightBit.csproj create mode 100644 native/Noddybox.Emulation.EightBit/Properties/AssemblyInfo.cs (limited to 'native/Noddybox.Emulation.EightBit') diff --git a/native/Noddybox.Emulation.EightBit/Noddybox.Emulation.EightBit.csproj b/native/Noddybox.Emulation.EightBit/Noddybox.Emulation.EightBit.csproj new file mode 100644 index 0000000..2d81cf6 --- /dev/null +++ b/native/Noddybox.Emulation.EightBit/Noddybox.Emulation.EightBit.csproj @@ -0,0 +1,74 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> + <ProductVersion>8.0.30703</ProductVersion> + <SchemaVersion>2.0</SchemaVersion> + <ProjectGuid>{C40AC553-8D22-4C04-8F2F-58D9A0EBD119}</ProjectGuid> + <OutputType>Library</OutputType> + <AppDesignerFolder>Properties</AppDesignerFolder> + <RootNamespace>Noddybox.Emulation.EightBit</RootNamespace> + <AssemblyName>Noddybox.Emulation.EightBit</AssemblyName> + <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> + <FileAlignment>512</FileAlignment> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> + <DebugSymbols>true</DebugSymbols> + <DebugType>full</DebugType> + <Optimize>false</Optimize> + <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>DEBUG;TRACE</DefineConstants> + <ErrorReport>prompt</ErrorReport> + <WarningLevel>4</WarningLevel> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> + <DebugType>pdbonly</DebugType> + <Optimize>true</Optimize> + <OutputPath>bin\Release\</OutputPath> + <DefineConstants>TRACE</DefineConstants> + <ErrorReport>prompt</ErrorReport> + <WarningLevel>4</WarningLevel> + </PropertyGroup> + <ItemGroup> + <Reference Include="System" /> + <Reference Include="System.Core" /> + <Reference Include="System.Xml.Linq" /> + <Reference Include="System.Data.DataSetExtensions" /> + <Reference Include="Microsoft.CSharp" /> + <Reference Include="System.Data" /> + <Reference Include="System.Xml" /> + </ItemGroup> + <ItemGroup> + <Compile Include="..\..\src\Noddybox.Emulation.EightBit\Binary.cs"> + <Link>Binary.cs</Link> + </Compile> + <Compile Include="..\..\src\Noddybox.Emulation.EightBit\ICpu.cs"> + <Link>ICpu.cs</Link> + </Compile> + <Compile Include="..\..\src\Noddybox.Emulation.EightBit\IDevice.cs"> + <Link>IDevice.cs</Link> + </Compile> + <Compile Include="..\..\src\Noddybox.Emulation.EightBit\IMemory.cs"> + <Link>IMemory.cs</Link> + </Compile> + <Compile Include="..\..\src\Noddybox.Emulation.EightBit\Register16.cs"> + <Link>Register16.cs</Link> + </Compile> + <Compile Include="Properties\AssemblyInfo.cs" /> + </ItemGroup> + <ItemGroup> + <ProjectReference Include="..\Noddybox.Emulation\Noddybox.Emulation.csproj"> + <Project>{1817A6AA-8E7A-424D-9741-934CD00A5D30}</Project> + <Name>Noddybox.Emulation</Name> + </ProjectReference> + </ItemGroup> + <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> + <!-- To modify your build process, add your task inside one of the targets below and uncomment it. + Other similar extension points exist, see Microsoft.Common.targets. + <Target Name="BeforeBuild"> + </Target> + <Target Name="AfterBuild"> + </Target> + --> +</Project> \ No newline at end of file diff --git a/native/Noddybox.Emulation.EightBit/Properties/AssemblyInfo.cs b/native/Noddybox.Emulation.EightBit/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..d3151fb --- /dev/null +++ b/native/Noddybox.Emulation.EightBit/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Noddybox.Emulation.EightBit")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Noddybox.Emulation.EightBit")] +[assembly: AssemblyCopyright("Copyright © 2012")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("a72cb25a-91b5-4660-8722-c576e957480f")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] -- cgit v1.2.3