Copy TestServer to Visual Studio 2026
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"profiles": {
|
||||
"TestServer": {
|
||||
"commandName": "Project",
|
||||
"workingDirectory": "C:\\Users\\heilm\\Documents\\Visual Studio 2026\\Visualizers"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -8,5 +8,17 @@
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\NamedPipes\NamedPipes.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="CopyToVs2026" Condition="Exists('$(OutputPath)\$(MSBuildProjectName).exe')" AfterTargets="AfterBuild" >
|
||||
<Message Importance="High" Text="CopyToVs2026"></Message>
|
||||
<ItemGroup>
|
||||
<FilesToCopy Include="$(OutputPath)\$(MSBuildProjectName).exe;
|
||||
$(OutputPath)\$(MSBuildProjectName).dll;
|
||||
$(OutputPath)\$(MSBuildProjectName).runtimeconfig.json;
|
||||
$(OutputPath)\PipeMethodCalls.dll;
|
||||
$(OutputPath)\NamedPipes.dll;
|
||||
$(OutputPath)\CommunityToolkit.Mvvm.dll;
|
||||
"/>
|
||||
</ItemGroup>
|
||||
<Copy SourceFiles="@(FilesToCopy)" DestinationFolder="$(USERPROFILE)\Documents\Visual Studio 2026\Visualizers" SkipUnchangedFiles="True" />
|
||||
</Target>
|
||||
</Project>
|
||||
|
||||
Reference in New Issue
Block a user