This repository was archived by the owner on Sep 2, 2025. It is now read-only.
forked from antonpup/Aurora
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAurora-Updater.csproj
More file actions
76 lines (66 loc) · 2.54 KB
/
Aurora-Updater.csproj
File metadata and controls
76 lines (66 loc) · 2.54 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
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
70
71
72
73
74
75
76
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<Platforms>AnyCPU;x64</Platforms>
<OutputType>WinExe</OutputType>
<PlatformTarget>x64</PlatformTarget>
<UseWindowsForms>true</UseWindowsForms>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Aurora_Updater</RootNamespace>
<AssemblyName>Aurora-Updater</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<InformationalVersion>1.0.0</InformationalVersion>
<Title>Aurora-Updater</Title>
<Description>Update tool for Aurora utility</Description>
<Product>Aurora-Updater</Product>
<Copyright>Copyright © 2016</Copyright>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<NeutralLanguage>en</NeutralLanguage>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<DisableTransitiveProjectReferences>true</DisableTransitiveProjectReferences>
<OutputPath>$(SolutionDir)..\Build\$(Configuration)</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<StartupObject>Aurora_Updater.Program</StartupObject>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>Resources\Aurora_updater.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="UpdateInfoNodes\" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\Aurora_updater.ico" />
<Resource Include="Resources\Aurora_updater_logo.png" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Project-Aurora\Project-Aurora.csproj">
<Private>false</Private>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json">
<Version>13.0.1</Version>
</PackageReference>
<PackageReference Include="Octokit">
<Version>0.50.0</Version>
</PackageReference>
<PackageReference Include="SemanticVersioning">
<Version>1.3.0</Version>
</PackageReference>
</ItemGroup>
</Project>