-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDailyRoutines.ModulesPublic.csproj
More file actions
71 lines (65 loc) · 3.36 KB
/
DailyRoutines.ModulesPublic.csproj
File metadata and controls
71 lines (65 loc) · 3.36 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<Project Sdk="Dalamud.CN.NET.Sdk/11.3.0">
<PropertyGroup>
<Authors>AtmoOmen</Authors>
<Version>1.0.0.0</Version>
<Description>Help with some boring daily tasks</Description>
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
<IsPackable>false</IsPackable>
<Title>Daily Routines Modules In Public</Title>
<Configurations>Debug;Release;ReleaseTest</Configurations>
</PropertyGroup>
<PropertyGroup>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<PlatformTarget>AnyCPU</PlatformTarget>
<UseWindowsForms>true</UseWindowsForms>
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
<BaseOutputPath>$(SolutionDir)bin</BaseOutputPath>
<SatelliteResourceLanguages>xxx</SatelliteResourceLanguages>
<Use_Dalamud_CN>true</Use_Dalamud_CN>
<Use_DalamudPackager>false</Use_DalamudPackager>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;CS0414;CS8601;CS8602;CS8604;CS8603;IDE1006;IDE0300;MSB3270;MSB324;CS0649;CA2211;CS8509;CS8625;MSB3305;CS8618;CS8600;CS8605;CS8620</NoWarn>
<DebugType>none</DebugType>
<Optimize>True</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>1701;1702;CS0414;CS8601;CS8602;CS8604;CS8603;IDE1006;IDE0300;MSB3270;MSB324;CS0649;CA2211;CS8509;CS8625;MSB3305;CS8618;CS8600;CS8605;CS8620</NoWarn>
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseTest|AnyCPU'">
<NoWarn>1701;1702;CS0414;CS8601;CS8602;CS8604;CS8603;IDE1006;IDE0300;MSB3270;MSB324;CS0649;CA2211;CS8509;CS8625;MSB3305;CS8618;CS8600;CS8605;CS8620</NoWarn>
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DailyRoutines.CodeAnalysis" Version="1.1.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.CodeDom" Version="9.0.1" />
</ItemGroup>
<ItemGroup>
<Reference Include="DailyRoutines">
<HintPath>$(BaseOutputPath)\$(Configuration)\DailyRoutines.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="TinyPinyin">
<HintPath>$(BaseOutputPath)\$(Configuration)\TinyPinyin.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="OmenTools">
<HintPath>$(BaseOutputPath)\$(Configuration)\OmenTools.dll</HintPath>
<Private>false</Private>
</Reference>
<Reference Include="EdgeTTS">
<HintPath>$(BaseOutputPath)\$(Configuration)\EdgeTTS.dll</HintPath>
<Private>false</Private>
</Reference>
</ItemGroup>
</Project>