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

语音合成与识别

开发平台:

Visual C++

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