mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
46 lines
No EOL
2.1 KiB
XML
46 lines
No EOL
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Non working, doesn't load Cosmos references -ags131 -->
|
|
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Build</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
|
<ProductVersion>8.0.30703</ProductVersion>
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
<ProjectGuid>{642930D8-5F78-43E3-ADA0-4E85609FF4CE}</ProjectGuid>
|
|
<OutputType>Dll</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>test.test</RootNamespace>
|
|
<AssemblyName>test.test</AssemblyName>
|
|
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
|
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
|
|
<FileAlignment>512</FileAlignment>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Build|x86' ">
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
<DebugType>pdbonly</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>.</OutputPath>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Core" />
|
|
<Reference Include="Microsoft.CSharp" />
|
|
<Reference Include="Cosmos.Assembler">
|
|
<HintPath>$(APPDATA)\Cosmos User Kit\Build\VSIP</HintPath>
|
|
</Reference>
|
|
<Reference Include="Cosmos.Assembler.x86">
|
|
<HintPath>$(APPDATA)\Cosmos User Kit\Build\VSIP</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="*.cs" />
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
<Target Name="Build">
|
|
<MakeDir Directories="$(OutputPath)" Condition="!Exists('$(OutputPath)')" />
|
|
<Csc Sources="@(Compile)" OutputAssembly="$(OutputPath)$(AssemblyName).exe" />
|
|
</Target>
|
|
</Project> |