BrowserUpdate.csproj 774 B

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
  2. <PropertyGroup>
  3. <AssemblyName>prBrowserUpdate</AssemblyName>
  4. <GenerateAssemblyInfo>False</GenerateAssemblyInfo>
  5. <OutputType>WinExe</OutputType>
  6. <UseWindowsForms>True</UseWindowsForms>
  7. <TargetFramework>net452</TargetFramework>
  8. <Prefer32Bit>True</Prefer32Bit>
  9. <Platforms>AnyCPU;x64;x86</Platforms>
  10. </PropertyGroup>
  11. <PropertyGroup>
  12. <LangVersion>Preview</LangVersion>
  13. <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
  14. </PropertyGroup>
  15. <PropertyGroup>
  16. <ApplicationIcon>favicon.ico</ApplicationIcon>
  17. <ApplicationManifest>app.manifest</ApplicationManifest>
  18. <RootNamespace />
  19. </PropertyGroup>
  20. <ItemGroup>
  21. <Reference Include="System.Xml.Linq" />
  22. </ItemGroup>
  23. </Project>