We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ef4ecd commit f2b347aCopy full SHA for f2b347a
crates/cli/src/subcommands/init.rs
@@ -178,8 +178,7 @@ pub async fn exec_init_csharp(args: &ArgMatches) -> anyhow::Result<()> {
178
(include_str!("project/csharp/StdbModule._csproj"), "StdbModule.csproj"),
179
(include_str!("project/csharp/Lib._cs"), "Lib.cs"),
180
(include_str!("project/csharp/_gitignore"), ".gitignore"),
181
- // Reuse global.json from modules instead of a separate template to ensure that we stay in sync.
182
- (include_str!("../../../../modules/global.json"), "global.json"),
+ (include_str!("project/csharp/global._json"), "global.json"),
183
];
184
185
// Check all dependencies
crates/cli/src/subcommands/project/csharp/global._json
@@ -0,0 +1,6 @@
1
+{
2
+ "sdk": {
3
+ "version": "8.0.400",
4
+ "rollForward": "latestMinor"
5
+ }
6
+}
0 commit comments