-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSitreamai.csproj
55 lines (55 loc) · 2.25 KB
/
Sitreamai.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<OutputType>Exe</OutputType>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AssemblyTitle>Sitreamai</AssemblyTitle>
<Product>Sitreamai</Product>
<Copyright>Copyright © 2024</Copyright>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<Platforms>x64</Platforms>
<Nullable>disable</Nullable>
<InvariantGlobalization>false</InvariantGlobalization>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishTrimmed>true</PublishTrimmed>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
<OutputPath>bin\x64\Release\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
<OutputPath>bin\x64\Debug\</OutputPath>
</PropertyGroup>
<ItemGroup>
<Reference Include="System.Core">
<HintPath>Lib\System.Core.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.1" />
<PackageReference Include="NAudio" Version="2.2.1" />
<PackageReference Include="NAudio.Vorbis" Version="1.5.0" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
<PackageReference Include="YAXLib" Version="2.15.0" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Lib\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="Lib\**" />
<None Remove="Resources\template.acb" />
<EmbeddedResource Include="Resources\nopreview.acb" />
<EmbeddedResource Include="Resources\template.acb" />
<None Remove="C:\Users\Clansty\.nuget\packages\naudio.vorbis\1.5.0\contentFiles\any\netstandard2.0\README.md" />
</ItemGroup>
<ItemGroup>
<None Remove="Lib\**" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MaiLib\MaiLib.csproj" />
<ProjectReference Include="..\SimaiSharp\SimaiSharp\SimaiSharp.csproj" />
<ProjectReference Include="..\XV2-Tools\LB_Common\LB_Common.csproj" />
<ProjectReference Include="..\XV2-Tools\Xv2CoreLib\Xv2CoreLib.csproj" />
</ItemGroup>
</Project>