ホテル管理システム
ogi
yesterday 1a1c8e71fcd14858f595029f089b2d4a00202b32
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="Microsoft.NET.Sdk">
 
  <PropertyGroup>
    <OutputType>WinExe</OutputType>
    <TargetFramework>net9.0-windows7.0</TargetFramework>
    <Nullable>enable</Nullable>
    <UseWindowsForms>true</UseWindowsForms>
    <ImplicitUsings>enable</ImplicitUsings>
    <Product>ホテルシステム</Product>
    <AssemblyVersion>1.0.0.1</AssemblyVersion>
    <FileVersion>1.0.0.1</FileVersion>
    <Version>1.0.0</Version>
  </PropertyGroup>
 
  <ItemGroup>
    <ProjectReference Include="..\HotelPms.Data.Server\HotelPms.Data.Server.csproj" />
    <ProjectReference Include="..\HotelPms.Share.Windows\HotelPms.Share.Windows.csproj" />
    <ProjectReference Include="..\HotelPms.Share\HotelPms.Share.csproj" />
    <ProjectReference Include="..\HotelPms.WinForm\HotelPms.WinForm.csproj" />
  </ItemGroup>
 
</Project>