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 ca3e0b5 commit c8c6644Copy full SHA for c8c6644
1 file changed
oss.cs
@@ -56,6 +56,15 @@
56
doc.Root?.Element("PropertyGroup")?.Element("IsPackable")?.Remove();
57
doc.Save($"src/Tests/Tests.csproj");
58
59
+File.WriteAllText($"src/Directory.props",
60
+ """
61
+ <Project>
62
+ <PropertyGroup>
63
+ <ImplicitUsings>true</ImplicitUsings>
64
+ </PropertyGroup>
65
+ </Project>
66
+ """);
67
+
68
await RunDotNet($"new solution -n {projectName}", $"Creating solution {projectName}.slnx");
69
await RunDotNet($"sln {projectName}.slnx add --in-root src/{projectName}/{projectName}.csproj src/Tests/Tests.csproj", $"Adding projects to {projectName}.slnx");
70
0 commit comments