-
Notifications
You must be signed in to change notification settings - Fork 1
/
ppsspp-api.csproj
80 lines (71 loc) · 3.13 KB
/
ppsspp-api.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
70
71
72
73
74
75
76
77
78
79
80
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>ppsspp_api</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<SignAssembly>False</SignAssembly>
<Title>PPSSPP Debugger API</Title>
<Authors>Pierce Andjelkovic</Authors>
<PackageIcon>PPSSPP-01.png</PackageIcon>
<NeutralLanguage>en-AU</NeutralLanguage>
<PackageLicenseExpression>ISC</PackageLicenseExpression>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<LangVersion>default</LangVersion>
<Version>0.0.2-pre</Version>
<Copyright>Copyright (c) 2023 Pierce Andjelkovic</Copyright>
<PackageProjectUrl>https://github.com/archanox/ppsspp-api</PackageProjectUrl>
<RepositoryUrl>https://github.com/archanox/ppsspp-api</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Description>C# library for interfacing with the PPSSPP Debugger API</Description>
<RepositoryType>git</RepositoryType>
<PackageTags>PPSSPP</PackageTags>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
</PropertyGroup>
<ItemGroup>
<Compile Remove="HelloWorld\**" />
<Compile Remove="MonitorFileOpen\**" />
<Compile Remove="Memory\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="HelloWorld\**" />
<EmbeddedResource Remove="MonitorFileOpen\**" />
<EmbeddedResource Remove="Memory\**" />
</ItemGroup>
<ItemGroup>
<None Remove="HelloWorld\**" />
<None Remove="MonitorFileOpen\**" />
<None Remove="Memory\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.11.0" />
<PackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.11.20">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="SonarAnalyzer.CSharp" Version="9.32.0.97167">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Websocket.Client" Version="5.1.2" />
</ItemGroup>
<ItemGroup>
<None Update="PPSSPP-01.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>