forked from Dasmius007/HumbleKeysLibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHumbleKeysLibrary.csproj
More file actions
113 lines (113 loc) · 5.05 KB
/
HumbleKeysLibrary.csproj
File metadata and controls
113 lines (113 loc) · 5.05 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>HumbleKeys</RootNamespace>
<AssemblyName>HumbleKeysLibrary</AssemblyName>
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<ProjectGuid>{2351B5C1-6E28-4B79-A1D9-90FDA53B5417}</ProjectGuid>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<LangVersion>7.1</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<LangVersion>7.3</LangVersion>
</PropertyGroup>
<ItemGroup>
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xaml" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
<Reference Include="WindowsBase" />
</ItemGroup>
<ItemGroup>
<Compile Include="Extensions\CloneObject.cs" />
<Compile Include="HumbleKeysLibraryClient.cs" />
<Compile Include="HumbleKeysLibrary.cs" />
<Compile Include="HumbleKeysLibrarySettings.cs" />
<Compile Include="HumbleKeysLibrarySettingsView.xaml.cs">
<DependentUpon>HumbleKeysLibrarySettingsView.xaml</DependentUpon>
</Compile>
<Compile Include="Models\ContentChoice.cs" />
<Compile Include="Models\ChoiceMonthV2.cs" />
<Compile Include="Models\ChoiceMonthV3.cs" />
<Compile Include="Models\IChoiceMonth.cs" />
<Compile Include="Models\Order.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Services\HumbleKeysAccountClient.cs" />
<Compile Include="Services\HumbleKeysAccountClientSettings.cs" />
<Compile Include="Services\IHumbleKeysAccountClientSettings.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
<None Include="extension.yaml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="Manifests\HumbleKeysLibrary_AddonDB.yaml" />
<None Include="Manifests\HumbleKeysLibrary_Installer.yaml" />
</ItemGroup>
<ItemGroup>
<None Include="icon.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Page Include="HumbleKeysLibrarySettingsView.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Page Include="Localization\en-US.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
<PackageReference Include="PlayniteSDK" Version="6.9.0" />
</ItemGroup>
<ItemGroup>
<Content Include=".github\workflows\generate_release_artifacts.yml" />
<Content Include=".github\workflows\msbuild.yml" />
<Content Include="attributions.txt" />
<Content Include="changelog.md" />
<Content Include="LICENSE" />
<Content Include="README.md" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Target Name="Gather artifact sources for PEXT creation" AfterTargets="Build">
<Copy SourceFiles="$(OutputPath)\extension.yaml" DestinationFolder="$(OutputPath)/pext/sources" />
<Copy SourceFiles="$(OutputPath)\$(AssemblyName).dll" DestinationFolder="$(OutputPath)/pext/sources" />
<Copy SourceFiles="$(OutputPath)\$(AssemblyName).pdb" DestinationFolder="$(OutputPath)/pext/sources" />
<Copy SourceFiles="$(OutputPath)\icon.png" DestinationFolder="$(OutputPath)/pext/sources" />
</Target>
<Target Name="Create PEXT" AfterTargets="Gather artifact sources for PEXT creation">
<ZipDirectory DestinationFile="$(OutputPath)/pext/$(AssemblyName).pext" SourceDirectory="$(OutputPath)/pext/sources" Overwrite="true" />
</Target>
</Project>