analyze.csproj

来自「这是一个用java语言编写的小型C语言的语法分析器。」· CSPROJ 代码 · 共 62 行

CSPROJ
62
字号
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" xmlns:Conversion="urn:Conversion">
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{6576433A-7397-423F-B52D-F79A760681DF}</ProjectGuid>
    <RootNamespace>analyze</RootNamespace>
    <AssemblyName>analyze</AssemblyName>
    <OutputType>Exe</OutputType>
    <ApplicationIcon>App.ico</ApplicationIcon>
    <RunPostBuildEvent>OnSuccessfulBuild</RunPostBuildEvent>
    <PreBuildEvent />
    <PostBuildEvent />
    <StartupObject />
    <NoConfig>false</NoConfig>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <NoStdLib>false</NoStdLib>
    <WarningLevel>4</WarningLevel>
    <NoWarn />
    <DebugSymbols>true</DebugSymbols>
    <Optimize>false</Optimize>
    <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
    <CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <OutputPath>bin\Debug\</OutputPath>
    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <NoStdLib>false</NoStdLib>
    <WarningLevel>4</WarningLevel>
    <NoWarn />
    <DebugSymbols>false</DebugSymbols>
    <Optimize>true</Optimize>
    <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
    <CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
    <DefineConstants>TRACE</DefineConstants>
    <OutputPath>bin\Release\</OutputPath>
    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.Data" />
    <Reference Include="System.Xml" />
    <Reference Include="parserLib">
      <HintPath>..\analyzeLib\bin\Debug\parserLib.dll</HintPath>
      <Private />
    </Reference>
    <Reference Include="analyzeLib">
      <HintPath>..\analyzeLib\bin\Debug\analyzeLib.dll</HintPath>
      <Private />
    </Reference>
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Analyze.cs" />
    <Content Include="App.ico" />
    <Compile Include="AssemblyInfo.cs" />
  </ItemGroup>
  <ItemGroup />
  <ItemGroup />
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
</Project>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?