Office deployment wizard for InstaSoft customers: - Install Office 2019/2021/2024 (Standard, Professional Plus, Home & Business) - Auto-download ODT from Microsoft, generate config XML, run setup - Remove existing Office installations (C2R + MSI) - License troubleshooting via ospp.vbs (dstatus, unpkey) - Fluent Design UI (WPF .NET Framework 4.8, Win7+ compatible) - Hungarian interface, multi-language Office installation - Product key input with auto-activation support Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
27 sor
930 B
XML
27 sor
930 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net48</TargetFramework>
|
|
<UseWPF>true</UseWPF>
|
|
<RootNamespace>InstaSoftOfficeTool</RootNamespace>
|
|
<AssemblyName>InstaSoftOfficeTool</AssemblyName>
|
|
<ApplicationIcon>Resources\app.ico</ApplicationIcon>
|
|
<Company>InstaSoft Zrt.</Company>
|
|
<Product>InstaSoft Office Tool</Product>
|
|
<Copyright>Copyright (c) InstaSoft Zrt. 2026</Copyright>
|
|
<Version>1.0.0</Version>
|
|
<AssemblyVersion>1.0.0.0</AssemblyVersion>
|
|
<FileVersion>1.0.0.0</FileVersion>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<LangVersion>latest</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Resource Include="Resources\app.ico" />
|
|
</ItemGroup>
|
|
</Project>
|