Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ Or create a `.csproj` manually:
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.WindowsAppSDK" Version="2.0.1" />
<ProjectReference Include="..\Reactor\Reactor.csproj" />
<ProjectReference Include="..\src\Reactor\Reactor.csproj" />
</ItemGroup>
</Project>
```
Expand Down
7 changes: 3 additions & 4 deletions src/Reactor.Cli/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ int CreateProject(string name)
Console.WriteLine();
Console.WriteLine("NOTE: The generated .sln assumes this project is a sibling of the Reactor directory:");
Console.WriteLine($" parent/");
Console.WriteLine($" Reactor/Reactor.csproj");
Console.WriteLine($" src/Reactor/Reactor.csproj");
Console.WriteLine($" {name}/{name}.csproj");
Console.WriteLine();
Console.WriteLine("To build and run:");
Expand Down Expand Up @@ -193,13 +193,12 @@ string GenerateCsproj() =>
<Nullable>enable</Nullable>
<UseWinUI>true</UseWinUI>
<WindowsPackageType>None</WindowsPackageType>
<WindowsSdkPackageVersion>10.0.22621.52</WindowsSdkPackageVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.WindowsAppSDK" Version="2.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Reactor\Reactor.csproj" />
<ProjectReference Include="..\src\Reactor\Reactor.csproj" />
</ItemGroup>
</Project>
""";
Expand All @@ -225,7 +224,7 @@ string GenerateSln(string name, string appGuid, string patchGuid)
"MinimumVisualStudioVersion = 10.0.40219.1",
$"Project(\"{csharpGuid}\") = \"{name}\", \"{name}.csproj\", \"{ag}\"",
"EndProject",
$"Project(\"{csharpGuid}\") = \"Reactor\", \"..\\Reactor\\Reactor.csproj\", \"{pg}\"",
$"Project(\"{csharpGuid}\") = \"Reactor\", \"..\\src\\Reactor\\Reactor.csproj\", \"{pg}\"",
"EndProject",
"Global",
$"{t1}GlobalSection(SolutionConfigurationPlatforms) = preSolution",
Expand Down
Loading