@@ -4,7 +4,7 @@ const uuid = require('uuid').v1().toUpperCase();
44module . exports = platform => [ {
55 name : ( { name } ) => `${ platform } /${ name } .sln` ,
66 content : ( { name } ) =>
7- `Microsoft Visual Studio Solution File, Format Version 12.00
7+ `Microsoft Visual Studio Solution File, Format Version 12.00
88# Visual Studio 14
99VisualStudioVersion = 14.0.25123.0
1010MinimumVisualStudioVersion = 10.0.40219.1
@@ -96,7 +96,7 @@ EndGlobal
9696} , {
9797 name : ( ) => `${ platform } /.gitignore` ,
9898 content : ( ) =>
99- `*AppPackages*
99+ `*AppPackages*
100100*BundleArtifacts*
101101*ReactAssets*
102102
@@ -178,7 +178,7 @@ packages/
178178} , {
179179 name : ( { name } ) => `${ platform } /.npmignore` ,
180180 content : ( ) =>
181- `
181+ `
182182# Make sure we don't publish build artifacts to NPM
183183ARM/
184184Debug/
191191} , {
192192 name : ( { name } ) => `${ platform } /${ name } /project.json` ,
193193 content : ( ) =>
194- `{
194+ `{
195195 "dependencies": {
196196 "Microsoft.NETCore.UniversalWindowsPlatform": "5.2.2"
197197 },
211211} , {
212212 name : ( { name } ) => `${ platform } /${ name } /${ name } .csproj` ,
213213 content : ( { name, namespace } ) =>
214- `<?xml version="1.0" encoding="utf-8"?>
214+ `<?xml version="1.0" encoding="utf-8"?>
215215<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
216216 <Import Project="$(MSBuildExtensionsPath)\\$(MSBuildToolsVersion)\\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\\$(MSBuildToolsVersion)\\Microsoft.Common.props')" />
217217 <PropertyGroup>
368368} , {
369369 name : ( { name } ) => `${ platform } /${ name } /${ name } Module.cs` ,
370370 content : ( { name, namespace } ) =>
371- `using ReactNative.Bridge;
371+ `using ReactNative.Bridge;
372372using System;
373373using System.Collections.Generic;
374374using Windows.ApplicationModel.Core;
@@ -405,7 +405,7 @@ namespace ${namespace}.${name}
405405} , {
406406 name : ( { name } ) => `${ platform } /${ name } /${ name } Package.cs` ,
407407 content : ( { name, namespace } ) =>
408- `using ReactNative.Bridge;
408+ `using ReactNative.Bridge;
409409using ReactNative.Modules.Core;
410410using ReactNative.UIManager;
411411using System;
@@ -462,7 +462,7 @@ namespace ${namespace}.${name}
462462} , {
463463 name : ( { name } ) => `${ platform } /${ name } /Properties/${ name } .rd.xml` ,
464464 content : ( { name } ) =>
465- `<?xml version="1.0" encoding="utf-8"?>
465+ `<?xml version="1.0" encoding="utf-8"?>
466466<!--
467467 This file contains Runtime Directives, specifications about types your application accesses
468468 through reflection and other dynamic code patterns. Runtime Directives are used to control the
@@ -494,7 +494,7 @@ namespace ${namespace}.${name}
494494} , {
495495 name : ( { name } ) => `${ platform } /${ name } /Properties/AssemblyInfo.cs` ,
496496 content : ( { name } ) =>
497- `using System.Reflection;
497+ `using System.Reflection;
498498using System.Runtime.CompilerServices;
499499using System.Runtime.InteropServices;
500500
0 commit comments