矩阵.csproj
上传用户:lslight
上传日期:2022-01-10
资源大小:14248k
文件大小:3k
源码类别:

DirextX编程

开发平台:

C#

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3.   <PropertyGroup>
  4.     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5.     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6.     <ProductVersion>8.0.50727</ProductVersion>
  7.     <SchemaVersion>2.0</SchemaVersion>
  8.     <ProjectGuid>{18EF4A2C-490E-456A-B9B5-648D6C3FCA9A}</ProjectGuid>
  9.     <OutputType>WinExe</OutputType>
  10.     <AppDesignerFolder>Properties</AppDesignerFolder>
  11.     <RootNamespace>矩阵</RootNamespace>
  12.     <AssemblyName>矩阵</AssemblyName>
  13.     <StartupObject>
  14.     </StartupObject>
  15.   </PropertyGroup>
  16.   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17.     <DebugSymbols>true</DebugSymbols>
  18.     <DebugType>full</DebugType>
  19.     <Optimize>false</Optimize>
  20.     <OutputPath>binDebug</OutputPath>
  21.     <DefineConstants>DEBUG;TRACE</DefineConstants>
  22.     <ErrorReport>prompt</ErrorReport>
  23.     <WarningLevel>4</WarningLevel>
  24.   </PropertyGroup>
  25.   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26.     <DebugType>pdbonly</DebugType>
  27.     <Optimize>true</Optimize>
  28.     <OutputPath>binRelease</OutputPath>
  29.     <DefineConstants>TRACE</DefineConstants>
  30.     <ErrorReport>prompt</ErrorReport>
  31.     <WarningLevel>4</WarningLevel>
  32.   </PropertyGroup>
  33.   <Import Project="$(MSBuildBinPath)Microsoft.CSharp.targets" />
  34.   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
  35.        Other similar extension points exist, see Microsoft.Common.targets.
  36.   <Target Name="BeforeBuild">
  37.   </Target>
  38.   <Target Name="AfterBuild">
  39.   </Target>
  40.   -->
  41.   <ItemGroup>
  42.     <Compile Include="MatrixExample.cs">
  43.       <SubType>Form</SubType>
  44.     </Compile>
  45.     <Compile Include="MatrixExample.Designer.cs">
  46.       <DependentUpon>MatrixExample.cs</DependentUpon>
  47.     </Compile>
  48.   </ItemGroup>
  49.   <ItemGroup>
  50.     <Reference Include="Microsoft.DirectX, Version=1.0.2902.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
  51.     <Reference Include="Microsoft.DirectX.Direct3D, Version=1.0.2902.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
  52.     <Reference Include="Microsoft.DirectX.Direct3DX, Version=1.0.2902.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
  53.     <Reference Include="System" />
  54.     <Reference Include="System.Data" />
  55.     <Reference Include="System.Drawing" />
  56.     <Reference Include="System.Windows.Forms" />
  57.     <Reference Include="System.Xml" />
  58.   </ItemGroup>
  59.   <ItemGroup>
  60.     <EmbeddedResource Include="MatrixExample.resx">
  61.       <SubType>Designer</SubType>
  62.       <DependentUpon>MatrixExample.cs</DependentUpon>
  63.     </EmbeddedResource>
  64.   </ItemGroup>
  65. </Project>