tryreco.csproj
上传用户:cookies0
上传日期:2022-07-28
资源大小:284k
文件大小:4k
源码类别:

语音合成与识别

开发平台:

Visual C++

  1. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2.   <PropertyGroup>
  3.     <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  4.     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  5.     <ProductVersion>8.0.50727</ProductVersion>
  6.     <SchemaVersion>2.0</SchemaVersion>
  7.     <ProjectGuid>{9CB2BEF1-E9D0-4E30-B783-AE0354EA1A56}</ProjectGuid>
  8.     <OutputType>WinExe</OutputType>
  9.     <AppDesignerFolder>Properties</AppDesignerFolder>
  10.     <RootNamespace>tryreco</RootNamespace>
  11.     <AssemblyName>tryreco</AssemblyName>
  12.   </PropertyGroup>
  13.   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  14.     <DebugSymbols>true</DebugSymbols>
  15.     <DebugType>full</DebugType>
  16.     <Optimize>false</Optimize>
  17.     <OutputPath>binDebug</OutputPath>
  18.     <DefineConstants>DEBUG;TRACE</DefineConstants>
  19.     <ErrorReport>prompt</ErrorReport>
  20.     <WarningLevel>4</WarningLevel>
  21.   </PropertyGroup>
  22.   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  23.     <DebugType>pdbonly</DebugType>
  24.     <Optimize>true</Optimize>
  25.     <OutputPath>binRelease</OutputPath>
  26.     <DefineConstants>TRACE</DefineConstants>
  27.     <ErrorReport>prompt</ErrorReport>
  28.     <WarningLevel>4</WarningLevel>
  29.   </PropertyGroup>
  30.   <ItemGroup>
  31.     <Reference Include="System" />
  32.     <Reference Include="System.Data" />
  33.     <Reference Include="System.Deployment" />
  34.     <Reference Include="System.Drawing" />
  35.     <Reference Include="System.Windows.Forms" />
  36.     <Reference Include="System.Xml" />
  37.   </ItemGroup>
  38.   <ItemGroup>
  39.     <Compile Include="Form1.cs">
  40.       <SubType>Form</SubType>
  41.     </Compile>
  42.     <Compile Include="Form1.Designer.cs">
  43.       <DependentUpon>Form1.cs</DependentUpon>
  44.     </Compile>
  45.     <Compile Include="Program.cs" />
  46.     <Compile Include="PropertiesAssemblyInfo.cs" />
  47.     <EmbeddedResource Include="Form1.resx">
  48.       <SubType>Designer</SubType>
  49.       <DependentUpon>Form1.cs</DependentUpon>
  50.     </EmbeddedResource>
  51.     <EmbeddedResource Include="PropertiesResources.resx">
  52.       <Generator>ResXFileCodeGenerator</Generator>
  53.       <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  54.       <SubType>Designer</SubType>
  55.     </EmbeddedResource>
  56.     <Compile Include="PropertiesResources.Designer.cs">
  57.       <AutoGen>True</AutoGen>
  58.       <DependentUpon>Resources.resx</DependentUpon>
  59.     </Compile>
  60.     <None Include="PropertiesSettings.settings">
  61.       <Generator>SettingsSingleFileGenerator</Generator>
  62.       <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  63.     </None>
  64.     <Compile Include="PropertiesSettings.Designer.cs">
  65.       <AutoGen>True</AutoGen>
  66.       <DependentUpon>Settings.settings</DependentUpon>
  67.       <DesignTimeSharedInput>True</DesignTimeSharedInput>
  68.     </Compile>
  69.     <Compile Include="Speach.cs" />
  70.     <Compile Include="SpRecognition.cs" />
  71.   </ItemGroup>
  72.   <ItemGroup>
  73.     <COMReference Include="SpeechLib">
  74.       <Guid>{C866CA3A-32F7-11D2-9602-00C04F8EE628}</Guid>
  75.       <VersionMajor>5</VersionMajor>
  76.       <VersionMinor>0</VersionMinor>
  77.       <Lcid>0</Lcid>
  78.       <WrapperTool>tlbimp</WrapperTool>
  79.       <Isolated>False</Isolated>
  80.     </COMReference>
  81.   </ItemGroup>
  82.   <Import Project="$(MSBuildBinPath)Microsoft.CSharp.targets" />
  83.   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
  84.        Other similar extension points exist, see Microsoft.Common.targets.
  85.   <Target Name="BeforeBuild">
  86.   </Target>
  87.   <Target Name="AfterBuild">
  88.   </Target>
  89.   -->
  90. </Project>