mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
95 lines
No EOL
4.4 KiB
XML
95 lines
No EOL
4.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ProjectGuid>{93D6FF56-6E23-4E80-98F6-730AC533F631}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>SentinelKernel</RootNamespace>
|
|
<AssemblyName>SentinelSystem</AssemblyName>
|
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
|
<FileAlignment>512</FileAlignment>
|
|
<TargetFrameworkProfile />
|
|
</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>
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
</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="System.Data" />
|
|
<Reference Include="System.Xml" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="FileSystem\FAT\FatFileSystem.cs" />
|
|
<Compile Include="FileSystem\FAT\FatStream.cs" />
|
|
<Compile Include="FileSystem\FAT\Listing\FatDirectory.cs" />
|
|
<Compile Include="FileSystem\FAT\Listing\FatFile.cs" />
|
|
<Compile Include="FileSystem\FileSystem.cs" />
|
|
<Compile Include="FileSystem\Listing\Base.cs" />
|
|
<Compile Include="FileSystem\Listing\Directory.cs" />
|
|
<Compile Include="FileSystem\Listing\File.cs" />
|
|
<Compile Include="FileSystem\VFS\VFSBase.cs" />
|
|
<Compile Include="FileSystem\VFS\VFSManager.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="SentinelVFS.cs" />
|
|
<Compile Include="System\IO\DirectoryImpl.cs" />
|
|
<Compile Include="System\IO\DirectoryInfoImpl.cs" />
|
|
<Compile Include="System\IO\DriveInfoImpl.cs" />
|
|
<Compile Include="System\IO\FileImpl.cs" />
|
|
<Compile Include="System\IO\FileInfoImpl.cs" />
|
|
<Compile Include="System\IO\FileStreamImpl.cs" />
|
|
<Compile Include="System\IO\FileSystemInfoImpl.cs" />
|
|
<Compile Include="System\IO\PathImpl.cs" />
|
|
<Compile Include="System\IO\StreamReaderImpl.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\source\Cosmos.Common\Cosmos.Common.csproj">
|
|
<Project>{1fac100c-d732-4ea4-b518-5af4baf64f2e}</Project>
|
|
<Name>Cosmos.Common</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\..\..\source\Cosmos.Debug.Kernel\Cosmos.Debug.Kernel.csproj">
|
|
<Project>{61607f1e-58f9-41cf-972f-128384f3e115}</Project>
|
|
<Name>Cosmos.Debug.Kernel</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\..\..\source\Cosmos.HAL\Cosmos.HAL.csproj">
|
|
<Project>{6A991D03-1435-4005-9809-B8BACDF3B021}</Project>
|
|
<Name>Cosmos.HAL</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\..\..\source\Cosmos.IL2CPU.Plugs\Cosmos.IL2CPU.Plugs.csproj">
|
|
<Project>{c801f19c-a9d3-42d5-9a57-9ffdf9b4d05e}</Project>
|
|
<Name>Cosmos.IL2CPU.Plugs</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\..\..\source\Cosmos.System\Cosmos.System.csproj">
|
|
<Project>{3def0461-08ab-471a-8f03-a9c556652a0f}</Project>
|
|
<Name>Cosmos.System</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> |