-
Notifications
You must be signed in to change notification settings - Fork 0
/
Andraste.Launcher.csproj
57 lines (57 loc) · 2.21 KB
/
Andraste.Launcher.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<ProjectGuid>{F6BF7B3B-301B-4B49-A411-2C08433FEB48}</ProjectGuid>
<OutputType>Exe</OutputType>
<TargetFramework>net48</TargetFramework>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<IsWebBootstrapper>false</IsWebBootstrapper>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
<AssemblyTitle>Andraste.Launcher</AssemblyTitle>
<Product>Andraste Launcher</Product>
<Copyright>Copyright 2023-2024 The AndrasteFramework Team</Copyright>
<OutputPath>bin\$(Configuration)\</OutputPath>
<LangVersion>8</LangVersion>
<Configurations>Release;Debug</Configurations>
<Platforms>x86;x64</Platforms>
<RuntimeIdentifiers>win-x86;win7-x64</RuntimeIdentifiers>
<Authors>Andraste Team</Authors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>x64</PlatformTarget>
<DebugType>pdbonly</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Andraste.EasyHook" Version="1.0.2" />
<PackageReference Include="Andraste.Host" Version="0.2.2" />
</ItemGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
<ItemGroup>
<None Include="app.manifest" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Blowfish.cs" />
<Compile Remove="EdLiveAttribute.cs" />
<Compile Remove="Program.cs" />
<Compile Remove="ProxyCrypto.cs" />
<Compile Remove="ProxyServer.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Andraste.Host\Andraste.Host.csproj" />
</ItemGroup>
</Project>