diff options
| author | Emmanuel Hansen <emmausssss@gmail.com> | 2024-08-31 14:39:26 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-31 11:39:26 -0300 |
| commit | 2c5c0392f9ff80a3907bbf376a13f797ebbc12cc (patch) | |
| tree | 66eac1cb8ec09aae5196520cad19ab8ee6aba241 /src/Ryujinx.HLE.Generators/Ryujinx.HLE.Generators.csproj | |
| parent | e0acde04bb032fd056904b909b3fd00c1a6fb996 (diff) | |
Make HLE project AOT friendly (#7085)
* add hle service generator
remove usage of reflection in device state
* remove rd.xml generation
* make applet manager reflection free
* fix typos
* fix encoding
* fix style report
* remove rogue generator reference
* remove double assignment
Diffstat (limited to 'src/Ryujinx.HLE.Generators/Ryujinx.HLE.Generators.csproj')
| -rw-r--r-- | src/Ryujinx.HLE.Generators/Ryujinx.HLE.Generators.csproj | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/Ryujinx.HLE.Generators/Ryujinx.HLE.Generators.csproj b/src/Ryujinx.HLE.Generators/Ryujinx.HLE.Generators.csproj new file mode 100644 index 00000000..eeab9c0e --- /dev/null +++ b/src/Ryujinx.HLE.Generators/Ryujinx.HLE.Generators.csproj @@ -0,0 +1,19 @@ +<Project Sdk="Microsoft.NET.Sdk"> + + <PropertyGroup> + <TargetFramework>netstandard2.0</TargetFramework> + <EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules> + <EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles> + <CompilerGeneratedFilesOutputPath>Generated</CompilerGeneratedFilesOutputPath> + <IsRoslynComponent>true</IsRoslynComponent> + </PropertyGroup> + + <ItemGroup> + <PackageReference Include="Microsoft.CodeAnalysis.Analyzers"> + <PrivateAssets>all</PrivateAssets> + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> + </PackageReference> + <PackageReference Include="Microsoft.CodeAnalysis.CSharp" /> + </ItemGroup> + +</Project> |
