forked from TehCheat/AutoOpen
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAutoOpen.csproj
More file actions
34 lines (34 loc) · 1.43 KB
/
AutoOpen.csproj
File metadata and controls
34 lines (34 loc) · 1.43 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0-windows</TargetFramework>
<OutputType>Library</OutputType>
<UseWindowsForms>true</UseWindowsForms>
<PlatformTarget>x64</PlatformTarget>
<EnableDynamicLoading>true</EnableDynamicLoading>
<LangVersion>latest</LangVersion>
<DebugType>embedded</DebugType>
<PathMap>$(MSBuildProjectDirectory)=$(MSBuildProjectName)</PathMap>
<EmbedAllSources>true</EmbedAllSources>
<OutputPath Condition="'$(ExApiPluginOutputPath)' != ''">$(ExApiPluginOutputPath)$(MSBuildProjectName)</OutputPath>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="chestWhitelist.txt" LogicalName="chestWhitelist.txt">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="doorBlacklist.txt" LogicalName="doorBlacklist.txt">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="switchBlacklist.txt" LogicalName="switchBlacklist.txt">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Reference Include="ExileCore">
<HintPath>$(exapiPackage)\ExileCore.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="SharpDX.Mathematics" Version="4.2.0" />
</ItemGroup>
</Project>