-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathDailyRoutines.ModulesPublic.csproj
More file actions
71 lines (61 loc) · 3.28 KB
/
DailyRoutines.ModulesPublic.csproj
File metadata and controls
71 lines (61 loc) · 3.28 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/15.0.0">
<PropertyGroup>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>true</ImplicitUsings>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<BaseOutputPath>$(SolutionDir)bin</BaseOutputPath>
<SatelliteResourceLanguages>xxx</SatelliteResourceLanguages>
<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>
<DebugSymbols>false</DebugSymbols>
<Optimize>True</Optimize>
</PropertyGroup>
<PropertyGroup>
<Use_DalamudPackager>false</Use_DalamudPackager>
<DailyRoutinesLibPath>$(APPDATA)\XIVLauncherCN\pluginConfigs\DailyRoutines\Dev\</DailyRoutinesLibPath>
</PropertyGroup>
<ItemDefinitionGroup>
<Reference>
<Private>false</Private>
</Reference>
</ItemDefinitionGroup>
<ItemGroup>
<PackageReference Include="DailyRoutines.CodeAnalysis" Version="2.3.0"
PrivateAssets="all"
IncludeAssets="runtime;build;native;contentfiles;analyzers;buildtransitive"/>
<PackageReference Include="TimeAgo.Core" Version="1.1.0"/>
<PackageReference Include="TinyPinyin" Version="1.1.0"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DailyRoutines\DailyRoutines.csproj"
Condition="Exists('..\DailyRoutines\DailyRoutines.csproj')"/>
<Reference Include="DailyRoutines"
Condition="!Exists('..\DailyRoutines\DailyRoutines.csproj')">
<HintPath>$(DailyRoutinesLibPath)DailyRoutines.dll</HintPath>
</Reference>
<ProjectReference Include="..\DailyRoutines.Common\DailyRoutines.Common.csproj"
Condition="Exists('..\DailyRoutines.Common\DailyRoutines.Common.csproj')"/>
<Reference Include="DailyRoutines.Common"
Condition="!Exists('..\DailyRoutines.Common\DailyRoutines.Common.csproj')">
<HintPath>$(DailyRoutinesLibPath)DailyRoutines.Common.dll</HintPath>
</Reference>
<ProjectReference Include="..\lib\EdgeTTS\EdgeTTS.csproj"
Condition="Exists('..\lib\EdgeTTS\EdgeTTS.csproj')"/>
<Reference Include="EdgeTTS"
Condition="!Exists('..\lib\EdgeTTS\EdgeTTS.csproj')">
<HintPath>$(DailyRoutinesLibPath)EdgeTTS.dll</HintPath>
</Reference>
<ProjectReference Include="..\lib\KamiToolKit\KamiToolKit.csproj"
Condition="Exists('..\lib\KamiToolKit\KamiToolKit.csproj')"/>
<Reference Include="KamiToolKit"
Condition="!Exists('..\lib\KamiToolKit\KamiToolKit.csproj')">
<HintPath>$(DailyRoutinesLibPath)KamiToolKit.dll</HintPath>
</Reference>
<ProjectReference Include="..\lib\OmenTools\OmenTools.csproj"
Condition="Exists('..\lib\OmenTools\OmenTools.csproj')"/>
<Reference Include="OmenTools"
Condition="!Exists('..\lib\OmenTools\OmenTools.csproj')">
<HintPath>$(DailyRoutinesLibPath)OmenTools.dll</HintPath>
</Reference>
</ItemGroup>
</Project>