sccdlib.csproj 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>10.0.0</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{B4A57EE1-3C90-4B43-9ACA-43821CB35EA0}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <RootNamespace>sccdlib</RootNamespace>
  11. <AssemblyName>sccdlib</AssemblyName>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  14. <DebugSymbols>true</DebugSymbols>
  15. <DebugType>full</DebugType>
  16. <Optimize>false</Optimize>
  17. <OutputPath>bin\Debug</OutputPath>
  18. <DefineConstants>DEBUG;</DefineConstants>
  19. <ErrorReport>prompt</ErrorReport>
  20. <WarningLevel>4</WarningLevel>
  21. <ConsolePause>false</ConsolePause>
  22. </PropertyGroup>
  23. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  24. <DebugType>none</DebugType>
  25. <Optimize>true</Optimize>
  26. <OutputPath>bin\Release</OutputPath>
  27. <ErrorReport>prompt</ErrorReport>
  28. <WarningLevel>4</WarningLevel>
  29. <ConsolePause>false</ConsolePause>
  30. </PropertyGroup>
  31. <ItemGroup>
  32. <Reference Include="System" />
  33. </ItemGroup>
  34. <ItemGroup>
  35. <Compile Include="Properties\AssemblyInfo.cs" />
  36. <Compile Include="Event.cs" />
  37. <Compile Include="ObjectManagerBase.cs" />
  38. <Compile Include="InstanceWrapper.cs" />
  39. <Compile Include="Association.cs" />
  40. <Compile Include="OutputListener.cs" />
  41. <Compile Include="ControllerBase.cs" />
  42. <Compile Include="GameControllerBase.cs" />
  43. <Compile Include="RuntimeClassBase.cs" />
  44. <Compile Include="AssociationException.cs" />
  45. <Compile Include="IOutputListener.cs" />
  46. <Compile Include="ConcurrentOutputListener.cs" />
  47. <Compile Include="AssociationReferenceException.cs" />
  48. <Compile Include="RunTimeException.cs" />
  49. <Compile Include="ParameterException.cs" />
  50. <Compile Include="EventQueue.cs" />
  51. <Compile Include="ThreadsControllerBase.cs" />
  52. <Compile Include="InputException.cs" />
  53. </ItemGroup>
  54. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  55. </Project>