forked from jaaiden/FH4RP
-
Notifications
You must be signed in to change notification settings - Fork 1
/
FH4RP.csproj
34 lines (29 loc) · 1.28 KB
/
FH4RP.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<LangVersion>7.1</LangVersion>
<Configurations>Debug;Release;EXE</Configurations>
<ApplicationIcon>H4.ico</ApplicationIcon>
<StartupObject>FH4RP.Program</StartupObject>
<RootNamespace>FH4RP</RootNamespace>
<NoWin32Manifest>true</NoWin32Manifest>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageIconUrl>H4.ico</PackageIconUrl>
<SignAssembly>false</SignAssembly>
<AssemblyOriginatorKeyFile>test.pfx</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath></OutputPath>
<PlatformTarget>x86</PlatformTarget>
<DocumentationFile>B:\Alan\discordRichPresence\FH4RPC-dev\FH4RP.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath></OutputPath>
<DocumentationFile>bin\FH4RP.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DiscordRichPresence" Version="1.0.121" />
</ItemGroup>
</Project>