LocalhostWebServer.csproj (925B)
1 <Project Sdk="Microsoft.NET.Sdk.Web"> 2 3 <PropertyGroup> 4 <TargetFramework>net8.0</TargetFramework> 5 <OutDir>$(SolutionDir)$(Platform)\$(Configuration)\LocalhostWebServer\</OutDir> 6 <Platforms>x64;x86</Platforms> 7 </PropertyGroup> 8 9 <ItemGroup> 10 <ProjectReference Include="..\WinGetSourceCreator\WinGetSourceCreator.csproj" /> 11 <ProjectReference Include="..\WinGetUtilInterop\WinGetUtilInterop.csproj" /> 12 <ProjectReference Include="..\WinGetUtil\WinGetUtil.vcxproj" > 13 <OutputItemType>Content</OutputItemType> 14 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> 15 <ReferenceOutputAssembly>True</ReferenceOutputAssembly> 16 </ProjectReference> 17 </ItemGroup> 18 19 <Target Name="PostBuild" AfterTargets="PostBuildEvent"> 20 <Copy SourceFiles="$(TargetDir)..\WinGetUtil\WinGetUtil.dll" DestinationFiles="$(TargetDir)WinGetUtil.dll" /> 21 </Target> 22 23 </Project>