Permalink
Please sign in to comment.
Showing
with
15,121 additions
and 154 deletions.
- +23 −27 NativeClient-WindowsStore.sln
- +2 −1 TodoListClient/App.xaml
- +0 −4 TodoListClient/App.xaml.cs
- BIN TodoListClient/Assets/LockScreenLogo.scale-200.png
- BIN TodoListClient/Assets/Logo.scale-100.png
- BIN TodoListClient/Assets/SmallLogo.scale-100.png
- BIN TodoListClient/Assets/SplashScreen.scale-100.png
- BIN TodoListClient/Assets/SplashScreen.scale-200.png
- BIN TodoListClient/Assets/Square150x150Logo.scale-200.png
- BIN TodoListClient/Assets/Square44x44Logo.scale-200.png
- BIN TodoListClient/Assets/Square44x44Logo.targetsize-24_altform-unplated.png
- BIN TodoListClient/Assets/StoreLogo.png
- BIN TodoListClient/Assets/StoreLogo.scale-100.png
- BIN TodoListClient/Assets/Wide310x150Logo.scale-200.png
- +4 −3 TodoListClient/MainPage.xaml
- +13 −31 TodoListClient/MainPage.xaml.cs
- +35 −12 TodoListClient/Package.appxmanifest
- +1 −1 TodoListClient/Properties/AssemblyInfo.cs
- +31 −0 TodoListClient/Properties/Default.rd.xml
- +44 −61 TodoListClient/TodoListClient.csproj
- BIN TodoListClient/TodoListClient_TemporaryKey.pfx
- +0 −12 TodoListClient/packages.config
- +20 −0 TodoListClient/project.json
- +14,946 −0 TodoListClient/project.lock.json
- +2 −2 TodoListService/Controllers/TodoListController.cs
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Deleted file not rendered
Deleted file not rendered
Deleted file not rendered
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Deleted file not rendered
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
| @@ -0,0 +1,31 @@ | ||
| +<!-- | ||
| + 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 http://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" Seralize="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> |
Oops, something went wrong.
0 comments on commit
3e4ab59