Advertisement
Guest User

Untitled

a guest
May 20th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. <Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
  2.  
  3. <PropertyGroup>
  4. <OutputType>Exe</OutputType>
  5. <TargetFramework>netcoreapp3.0</TargetFramework>
  6. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  7. <UseWindowsForms>true</UseWindowsForms>
  8. <Platforms>AnyCPU;x86;x64</Platforms>
  9. <StartupObject>Inputshare.Program</StartupObject>
  10. <ApplicationIcon/>
  11. </PropertyGroup>
  12.  
  13. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  14. <OutputPath>..\debug64</OutputPath>
  15. <PlatformTarget>x64</PlatformTarget>
  16. </PropertyGroup>
  17.  
  18. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
  19. <OutputPath>..\debug32</OutputPath>
  20. </PropertyGroup>
  21.  
  22. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  23. <OutputPath>..\release64</OutputPath>
  24. </PropertyGroup>
  25.  
  26. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
  27. <OutputPath>..\release32</OutputPath>
  28. </PropertyGroup>
  29.  
  30. <ItemGroup>
  31. <PackageReference Include="Microsoft.Windows.Compatibility" Version="3.0.0-preview4.19212.13" />
  32. </ItemGroup>
  33.  
  34. <ItemGroup>
  35. <ProjectReference Include="..\InputshareLib\InputshareLib.csproj">
  36. <Private>true</Private>
  37. </ProjectReference>
  38. </ItemGroup>
  39.  
  40. <ItemGroup>
  41. <Compile Update="ClientForm.cs">
  42. <SubType>Form</SubType>
  43. </Compile>
  44. <Compile Update="ClientForm.Designer.cs">
  45. <DependentUpon>ClientForm.cs</DependentUpon>
  46. </Compile>
  47. </ItemGroup>
  48.  
  49. <ItemGroup>
  50. <EmbeddedResource Update="ClientForm.resx">
  51. <DependentUpon>ClientForm.cs</DependentUpon>
  52. </EmbeddedResource>
  53. </ItemGroup>
  54.  
  55. <ItemGroup>
  56. <None Update="TrayIcon.ico">
  57. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  58. </None>
  59. </ItemGroup>
  60.  
  61. <PropertyGroup>
  62. <Temp>$(SolutionDir)\packaging\</Temp>
  63. </PropertyGroup>
  64.  
  65.  
  66. </Project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement