⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 课程安排.csproj

📁 实现课程表编排和打印功能,通过在候选列表中选择课程和教师(没有被排课且该教师教授所选择的课程)来完成排课,代码约8000行
💻 CSPROJ
字号:
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>8.0.50727</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{8B3FB4F6-DDCB-4655-B495-4D4F030CD4AA}</ProjectGuid>
    <OutputType>WinExe</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>课程安排</RootNamespace>
    <AssemblyName>课程安排</AssemblyName>
    <StartupObject>课程安排.Program</StartupObject>
  </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.Data" />
    <Reference Include="System.Deployment" />
    <Reference Include="System.Design" />
    <Reference Include="System.Drawing" />
    <Reference Include="System.Windows.Forms" />
    <Reference Include="System.Xml" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="ClassUI.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="ClassUI.Designer.cs">
      <DependentUpon>ClassUI.cs</DependentUpon>
    </Compile>
    <Compile Include="Dialog\frmClassName.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="Dialog\frmClassName.Designer.cs">
      <DependentUpon>frmClassName.cs</DependentUpon>
    </Compile>
    <Compile Include="Dialog\frmPrint.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="Dialog\frmPrint.Designer.cs">
      <DependentUpon>frmPrint.cs</DependentUpon>
    </Compile>
    <Compile Include="Dialog\frmSubjectName.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="Dialog\frmSubjectName.Designer.cs">
      <DependentUpon>frmSubjectName.cs</DependentUpon>
    </Compile>
    <Compile Include="Dialog\frmTeacherName.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="Dialog\frmTeacherName.Designer.cs">
      <DependentUpon>frmTeacherName.cs</DependentUpon>
    </Compile>
    <Compile Include="MDIForm.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="MDIForm.Designer.cs">
      <DependentUpon>MDIForm.cs</DependentUpon>
    </Compile>
    <Compile Include="Program.cs" />
    <Compile Include="Properties\AssemblyInfo.cs" />
    <EmbeddedResource Include="ClassUI.resx">
      <DependentUpon>ClassUI.cs</DependentUpon>
      <SubType>Designer</SubType>
    </EmbeddedResource>
    <EmbeddedResource Include="CourseUI.resx">
      <SubType>Designer</SubType>
      <DependentUpon>CourseUI.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="Dialog\frmClassName.resx">
      <SubType>Designer</SubType>
      <DependentUpon>frmClassName.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="Dialog\frmPrint.resx">
      <SubType>Designer</SubType>
      <DependentUpon>frmPrint.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="Dialog\frmSubjectName.resx">
      <SubType>Designer</SubType>
      <DependentUpon>frmSubjectName.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="Dialog\frmTeacherName.resx">
      <SubType>Designer</SubType>
      <DependentUpon>frmTeacherName.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="MDIForm.resx">
      <SubType>Designer</SubType>
      <DependentUpon>MDIForm.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="Properties\licenses.licx" />
    <EmbeddedResource Include="Properties\Resources.resx">
      <Generator>ResXFileCodeGenerator</Generator>
      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
      <SubType>Designer</SubType>
    </EmbeddedResource>
    <EmbeddedResource Include="SubjectUI.resx">
      <SubType>Designer</SubType>
      <DependentUpon>SubjectUI.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="TeacherUI.resx">
      <DependentUpon>TeacherUI.cs</DependentUpon>
      <SubType>Designer</SubType>
    </EmbeddedResource>
    <Compile Include="Properties\Resources.Designer.cs">
      <AutoGen>True</AutoGen>
      <DependentUpon>Resources.resx</DependentUpon>
      <DesignTime>True</DesignTime>
    </Compile>
    <None Include="Properties\Settings.settings">
      <Generator>SettingsSingleFileGenerator</Generator>
      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
    </None>
    <Compile Include="Properties\Settings.Designer.cs">
      <AutoGen>True</AutoGen>
      <DependentUpon>Settings.settings</DependentUpon>
      <DesignTimeSharedInput>True</DesignTimeSharedInput>
    </Compile>
    <Compile Include="SubjectUI.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="SubjectUI.Designer.cs">
      <DependentUpon>SubjectUI.cs</DependentUpon>
    </Compile>
    <Compile Include="TeacherUI.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="TeacherUI.Designer.cs">
      <DependentUpon>TeacherUI.cs</DependentUpon>
    </Compile>
    <Compile Include="CourseUI.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="CourseUI.Designer.cs">
      <DependentUpon>CourseUI.cs</DependentUpon>
    </Compile>
  </ItemGroup>
  <ItemGroup>
    <Service Include="{967B4E0D-AD0C-4609-AB67-0FA40C0206D8}" />
  </ItemGroup>
  <ItemGroup>
    <None Include="bin\Debug\课程安排.exe" />
  </ItemGroup>
  <ItemGroup>
    <None Include="Resources\dragInfoControl1.Destination.txt" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\控件\控件.csproj">
      <Project>{6D09072D-FECF-45EE-9F00-BCC8E6B92DF6}</Project>
      <Name>控件</Name>
    </ProjectReference>
  </ItemGroup>
  <ItemGroup>
    <Content Include="bin\Debug\Properties.txt" />
    <Content Include="Properties.txt" />
  </ItemGroup>
  <ItemGroup>
    <Folder Include="Help\" />
  </ItemGroup>
  <Import Project="$(MSBuildBinPath)\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>

⌨️ 快捷键说明

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