Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/spa-templates.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier Calvarro Nelson <jacalvar@microsoft.com>2021-08-17 20:39:27 +0300
committerGitHub <noreply@github.com>2021-08-17 20:39:27 +0300
commit2f75ca0d7a0b0001d477cfae93f8492f1d7ed950 (patch)
tree43cb8b73ac32b68aaae31a0f390aa19e68d31502
parent373712a22074c9cec3461dc5322300ccfc229ef7 (diff)
Update project files to use implicit usings (#11)
* Update projects to use implicit usings
-rw-r--r--src/Angular-CSharp.csproj.in1
-rw-r--r--src/React-CSharp.csproj.in1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/Angular-CSharp.csproj.in b/src/Angular-CSharp.csproj.in
index c705164..e94b238 100644
--- a/src/Angular-CSharp.csproj.in
+++ b/src/Angular-CSharp.csproj.in
@@ -10,6 +10,7 @@
<SpaProxyLaunchCommand>npm start</SpaProxyLaunchCommand>
<NoDefaultLaunchSettingsFile Condition="'$(ExcludeLaunchSettings)' == 'True'">True</NoDefaultLaunchSettingsFile>
<RootNamespace Condition="'$(name)' != '$(name{-VALUE-FORMS-}safe_namespace)'">Company.WebApplication1</RootNamespace>
+ <ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
diff --git a/src/React-CSharp.csproj.in b/src/React-CSharp.csproj.in
index 5eb953d..6b0e808 100644
--- a/src/React-CSharp.csproj.in
+++ b/src/React-CSharp.csproj.in
@@ -14,6 +14,7 @@
<SpaProxyLaunchCommand>npm start</SpaProxyLaunchCommand>
<NoDefaultLaunchSettingsFile Condition="'$(ExcludeLaunchSettings)' == 'True'">True</NoDefaultLaunchSettingsFile>
<RootNamespace Condition="'$(name)' != '$(name{-VALUE-FORMS-}safe_namespace)'">Company.WebApplication1</RootNamespace>
+ <ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>