1234567891011121314151617181920212223 |
- <Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
- <PropertyGroup>
- <AssemblyName>prBrowserUpdate</AssemblyName>
- <GenerateAssemblyInfo>False</GenerateAssemblyInfo>
- <OutputType>WinExe</OutputType>
- <UseWindowsForms>True</UseWindowsForms>
- <TargetFramework>net452</TargetFramework>
- <Prefer32Bit>True</Prefer32Bit>
- <Platforms>AnyCPU;x64;x86</Platforms>
- </PropertyGroup>
- <PropertyGroup>
- <LangVersion>Preview</LangVersion>
- <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
- </PropertyGroup>
- <PropertyGroup>
- <ApplicationIcon>favicon.ico</ApplicationIcon>
- <ApplicationManifest>app.manifest</ApplicationManifest>
- <RootNamespace />
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="System.Xml.Linq" />
- </ItemGroup>
- </Project>
|