ningshuxia
2024-06-19 7e673fdd828d857fe1937150fa5f903c17708304
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>Exe</OutputType>
    <TargetFramework>net6.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>disable</Nullable>
    <AssemblyName>$(MSBuildProjectName)</AssemblyName>
    <RootNamespace>Yw.TopShelf</RootNamespace>
    <GenerateDocumentationFile>True</GenerateDocumentationFile>
    <PlatformTarget>x86</PlatformTarget>
  </PropertyGroup>
 
  <ItemGroup>
    <PackageReference Include="Yw.TopShelf" Version="3.0.0" />
  </ItemGroup>
 
  <ItemGroup>
    <ProjectReference Include="..\IStation.Server.Validation\IStation.Server.Validation.csproj" />
  </ItemGroup>
 
</Project>