-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathLlamaUtilities.csproj
58 lines (56 loc) · 2.46 KB
/
LlamaUtilities.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
56
57
58
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{086C0E04-B7B9-460F-8599-0DC6A35CB385}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>LlamaUtilities</RootNamespace>
<AssemblyName>LlamaUtilities</AssemblyName>
<LangVersion>default</LangVersion>
<UseWindowsForms>true</UseWindowsForms>
<UseWPF>true</UseWPF>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
<TargetFramework>net8.0-windows</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="PresentationCore"/>
<Reference Include="System"/>
<Reference Include="System.Core"/>
<Reference Include="System.Data"/>
<Reference Include="System.Drawing"/>
<Reference Include="System.Windows.Forms"/>
<Reference Include="System.Xml"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="LlamaLibrary" Version="24.1121.2234.29" />
<PackageReference Include="RebornBuddy.Assemblies" Version="1.0.600" />
</ItemGroup>
<ItemGroup>
<Compile Remove="OrderbotTags\LLUseItem.cs" />
<Compile Remove="OrderbotTags\LLTalkTo.cs" />
<Compile Remove="OrderbotTags\LLSimpleDuty.cs" />
<Compile Remove="OrderbotTags\LLPickUpQuest.cs" />
<Compile Remove="OrderbotTags\LLExtendedDutyTag.cs" />
<Compile Remove="OrderbotTags\LLEmoteNpc.cs" />
</ItemGroup>
</Project>