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

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLarry Ewing <lewing@microsoft.com>2021-05-01 03:28:54 +0300
committerGitHub <noreply@github.com>2021-05-01 03:28:54 +0300
commit15617705060ff75a1a00d1985450dc006d4c5050 (patch)
tree71a04cdf9eebe842a86c9452acd46466bfa32c1a /src/tasks/WasmAppBuilder/WasmAppBuilder.cs
parent94221f30cce9783f39d30eebbd9994f9711472e7 (diff)
[wasm] Port additional fixes in #52078 main (#52125)
* Port additional fixes in #52078 main * Update src/tasks/AotCompilerTask/MonoAOTCompiler.csproj Co-authored-by: Daniel Plaisted <dsplaisted@gmail.com> * Update src/tasks/WasmAppBuilder/WasmAppBuilder.csproj Co-authored-by: Daniel Plaisted <dsplaisted@gmail.com> * Update src/tasks/WasmAppBuilder/WasmAppBuilder.csproj Co-authored-by: Daniel Plaisted <dsplaisted@gmail.com> * Apply suggestions from code review Co-authored-by: Daniel Plaisted <dsplaisted@gmail.com> * Use a property for net472 * Use consistent separator character Co-authored-by: Adeel Mujahid <3840695+am11@users.noreply.github.com> Co-authored-by: Ankit Jain <radical@gmail.com> Co-authored-by: Daniel Plaisted <dsplaisted@gmail.com> Co-authored-by: Adeel Mujahid <3840695+am11@users.noreply.github.com>
Diffstat (limited to 'src/tasks/WasmAppBuilder/WasmAppBuilder.cs')
-rw-r--r--src/tasks/WasmAppBuilder/WasmAppBuilder.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tasks/WasmAppBuilder/WasmAppBuilder.cs b/src/tasks/WasmAppBuilder/WasmAppBuilder.cs
index a8a8b1ebee3..9ef7679c292 100644
--- a/src/tasks/WasmAppBuilder/WasmAppBuilder.cs
+++ b/src/tasks/WasmAppBuilder/WasmAppBuilder.cs
@@ -86,9 +86,9 @@ public class WasmAppBuilder : Task
Behavior = behavior;
}
[JsonPropertyName("behavior")]
- public string Behavior { get; set; }
+ public string Behavior { get; init; }
[JsonPropertyName("name")]
- public string Name { get; set; }
+ public string Name { get; init; }
}
private class AssemblyEntry : AssetEntry