This repository has been archived by the owner on Nov 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
League Client Automation.csproj
69 lines (58 loc) · 2.17 KB
/
League Client Automation.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
59
60
61
62
63
64
65
66
67
68
69
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>LCA</RootNamespace>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<PlatformTarget>x64</PlatformTarget>
<Platforms>x64</Platforms>
<ErrorReport>none</ErrorReport>
<FileAlignment>512</FileAlignment>
<!--<NoWin32Manifest>true</NoWin32Manifest>-->
<InvariantGlobalization>true</InvariantGlobalization>
<EventSourceSupport>false</EventSourceSupport>
<HttpActivityPropagationSupport>false</HttpActivityPropagationSupport>
<MetadataUpdaterSupport>false</MetadataUpdaterSupport>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>false</SelfContained>
<!--<UseAppHost>false</UseAppHost>-->
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<PublishAot>true</PublishAot>
<ApplicationIcon>Ledros.ico</ApplicationIcon>
<!--<IlcDisableReflection>true</IlcDisableReflection>-->
<!--<IlcGenerateMstatFile>true</IlcGenerateMstatFile>-->
<!--<IlcGenerateDgmlFile>true</IlcGenerateDgmlFile>-->
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<OutputPath>bin\</OutputPath>
<DefineConstants />
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<OutputPath>bin\Debug\</OutputPath>
<DebugType>full</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Release\**" />
<EmbeddedResource Remove="Release\**" />
<None Remove="Release\**" />
</ItemGroup>
<ItemGroup>
<Content Include="Ledros.ico" />
</ItemGroup>
<ItemGroup>
<Reference Include="Json">
<HintPath>..\Utilities\Json\bin\Json.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="champions.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="config.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>