-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExtracting-information.vbproj
More file actions
37 lines (32 loc) · 1.01 KB
/
Extracting-information.vbproj
File metadata and controls
37 lines (32 loc) · 1.01 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>Using_EPBotAOT</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<!-- x64 wymagane dla natywnej EPBot.dll (PE32+ x86-64) -->
<PlatformTarget>x64</PlatformTarget>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<!-- Kopiuj natywną DLL obok exe przy każdym buildzie -->
<ItemGroup>
<Content Include="EPBot.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Compile Remove="Hand-simulation.vb" />
<Compile Remove="Public-private-information.vb" />
<Compile Remove="Program.vb" />
</ItemGroup>
<ItemGroup>
<Compile Update="Hand-simulation.vb">
<ExcludeFromBuild>true</ExcludeFromBuild>
</Compile>
<Compile Update="Public-private-information.vb">
<ExcludeFromBuild>true</ExcludeFromBuild>
</Compile>
<Compile Update="Program.vb">
<ExcludeFromBuild>true</ExcludeFromBuild>
</Compile>
</ItemGroup>
</Project>