TimeSync.csproj 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{B53FF4FE-3CE8-4980-9F7D-34CD1C1D699A}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>TimeSync</RootNamespace>
  12. <AssemblyName>TimeSync</AssemblyName>
  13. <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
  14. <TargetFrameworkProfile>
  15. </TargetFrameworkProfile>
  16. <FileAlignment>512</FileAlignment>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  19. <PlatformTarget>x86</PlatformTarget>
  20. <DebugSymbols>true</DebugSymbols>
  21. <DebugType>full</DebugType>
  22. <Optimize>false</Optimize>
  23. <OutputPath>bin\Debug\</OutputPath>
  24. <DefineConstants>DEBUG;TRACE</DefineConstants>
  25. <ErrorReport>prompt</ErrorReport>
  26. <WarningLevel>4</WarningLevel>
  27. <Prefer32Bit>false</Prefer32Bit>
  28. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  30. <PlatformTarget>x86</PlatformTarget>
  31. <DebugType>pdbonly</DebugType>
  32. <Optimize>true</Optimize>
  33. <OutputPath>bin\Release\</OutputPath>
  34. <DefineConstants>TRACE</DefineConstants>
  35. <ErrorReport>prompt</ErrorReport>
  36. <WarningLevel>4</WarningLevel>
  37. <Prefer32Bit>false</Prefer32Bit>
  38. </PropertyGroup>
  39. <PropertyGroup>
  40. <ApplicationIcon>128X128.ico</ApplicationIcon>
  41. </PropertyGroup>
  42. <ItemGroup>
  43. <Reference Include="System" />
  44. <Reference Include="System.Core" />
  45. <Reference Include="System.Xml.Linq" />
  46. <Reference Include="System.Data.DataSetExtensions" />
  47. <Reference Include="Microsoft.CSharp" />
  48. <Reference Include="System.Data" />
  49. <Reference Include="System.Deployment" />
  50. <Reference Include="System.Drawing" />
  51. <Reference Include="System.Windows.Forms" />
  52. <Reference Include="System.Xml" />
  53. </ItemGroup>
  54. <ItemGroup>
  55. <Compile Include="FrmMain.cs">
  56. <SubType>Form</SubType>
  57. </Compile>
  58. <Compile Include="FrmMain.Designer.cs">
  59. <DependentUpon>FrmMain.cs</DependentUpon>
  60. </Compile>
  61. <Compile Include="FrmSeting.cs">
  62. <SubType>Form</SubType>
  63. </Compile>
  64. <Compile Include="FrmSeting.Designer.cs">
  65. <DependentUpon>FrmSeting.cs</DependentUpon>
  66. </Compile>
  67. <Compile Include="INIFile\IniFileMgr.cs" />
  68. <Compile Include="Program.cs" />
  69. <Compile Include="Properties\AssemblyInfo.cs" />
  70. <Compile Include="SNTPTimeClient\SNTPTimeClient.cs" />
  71. <EmbeddedResource Include="FrmMain.resx">
  72. <DependentUpon>FrmMain.cs</DependentUpon>
  73. </EmbeddedResource>
  74. <EmbeddedResource Include="FrmSeting.resx">
  75. <DependentUpon>FrmSeting.cs</DependentUpon>
  76. </EmbeddedResource>
  77. <EmbeddedResource Include="Properties\Resources.resx">
  78. <Generator>ResXFileCodeGenerator</Generator>
  79. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  80. <SubType>Designer</SubType>
  81. </EmbeddedResource>
  82. <Compile Include="Properties\Resources.Designer.cs">
  83. <AutoGen>True</AutoGen>
  84. <DependentUpon>Resources.resx</DependentUpon>
  85. <DesignTime>True</DesignTime>
  86. </Compile>
  87. <None Include="app.config" />
  88. <None Include="Properties\Settings.settings">
  89. <Generator>SettingsSingleFileGenerator</Generator>
  90. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  91. </None>
  92. <Compile Include="Properties\Settings.Designer.cs">
  93. <AutoGen>True</AutoGen>
  94. <DependentUpon>Settings.settings</DependentUpon>
  95. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  96. </Compile>
  97. <None Include="SetConfig.ini">
  98. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  99. </None>
  100. </ItemGroup>
  101. <ItemGroup>
  102. <Content Include="128X128.ico" />
  103. <Content Include="ico\128X128.ico" />
  104. </ItemGroup>
  105. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  106. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  107. Other similar extension points exist, see Microsoft.Common.targets.
  108. <Target Name="BeforeBuild">
  109. </Target>
  110. <Target Name="AfterBuild">
  111. </Target>
  112. -->
  113. </Project>