mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 10:16:24 +02:00
* Unify exe/dll naming - PowerToys.Runner Align naming with other exes - PowerToys Runner -> PowerToys.Runner * Unify exe/dll naming - Microsoft.PowerToys.Common.UI Project name - Microsoft.PowerToys.Common.UI -> Common.UI dll name - Microsoft.PowerToys.Common.UI.dll -> PowerToys.Common.UI.dll * Unify exe/dll naming - Settings Project names - Microsoft.PowerToys.Settings* -> Settings* Dll names - Microsoft.PowerToys.Settings*.dll -> PowerToys.Settings*.dll * Revert file autoformat * [Docs] Update paths to settings projects/files * Fix tests - Update path
31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
<!--
|
|
This file contains Runtime Directives used by .NET Native. The defaults here are suitable for most
|
|
developers. However, you can modify these parameters to modify the behavior of the .NET Native
|
|
optimizer.
|
|
|
|
Runtime Directives are documented at https://go.microsoft.com/fwlink/?LinkID=391919
|
|
|
|
To fully enable reflection for App1.MyClass and all of its public/private members
|
|
<Type Name="App1.MyClass" Dynamic="Required All"/>
|
|
|
|
To enable dynamic creation of the specific instantiation of AppClass<T> over System.Int32
|
|
<TypeInstantiation Name="App1.AppClass" Arguments="System.Int32" Activate="Required Public" />
|
|
|
|
Using the Namespace directive to apply reflection policy to all the types in a particular namespace
|
|
<Namespace Name="DataClasses.ViewModels" Serialize="All" />
|
|
-->
|
|
|
|
<Directives xmlns="http://schemas.microsoft.com/netfx/2013/01/metadata">
|
|
<Application>
|
|
<!--
|
|
An Assembly element with Name="*Application*" applies to all assemblies in
|
|
the application package. The asterisks are not wildcards.
|
|
-->
|
|
<Assembly Name="*Application*" Dynamic="Required All" />
|
|
|
|
|
|
<!-- Add your application specific runtime directives here. -->
|
|
|
|
|
|
</Application>
|
|
</Directives> |