Microsoft.Management.Configuration.Projection.csproj (1943B)
1 <Project Sdk="Microsoft.NET.Sdk"> 2 3 <PropertyGroup> 4 <TargetFramework>net8.0-windows10.0.26100.0</TargetFramework> 5 <Platform>AnyCpu</Platform> 6 <ImplicitUsings>enable</ImplicitUsings> 7 <Nullable>enable</Nullable> 8 <OutputPath>$(SolutionDir)$(Platform)\$(Configuration)\$(MSBuildProjectName)\</OutputPath> 9 <Configurations>Debug;Release;ReleaseStatic</Configurations> 10 <EmbedUntrackedSources>true</EmbedUntrackedSources> 11 </PropertyGroup> 12 13 <PropertyGroup> 14 <CsWinRTIncludes>Microsoft.Management.Configuration</CsWinRTIncludes> 15 <CsWinRTGeneratedFilesDir>$(OutDir)</CsWinRTGeneratedFilesDir> 16 <CsWinRTWindowsMetadata>10.0.26100.0</CsWinRTWindowsMetadata> 17 <!-- Ensure Support for Windows 10, Version 1809 --> 18 <TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion> 19 <!-- 20 Disables the AssemblyInfo generation override in the internal build. 21 Without this, values like TargetPlatformMinVersion are not placed into the assembly attributes 22 and .NET static analysis tools will assume that this assembly requires the OS version in our TargetFramework. 23 --> 24 <XesDisableAssemblyInfoWrite>True</XesDisableAssemblyInfoWrite> 25 </PropertyGroup> 26 27 <PropertyGroup> 28 <!-- Workaround for MSB3271 error on processor architecture mismatch --> 29 <ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>None</ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch> 30 </PropertyGroup> 31 32 <ItemGroup> 33 <PackageReference Include="Microsoft.Windows.CsWinRT" /> 34 </ItemGroup> 35 36 <ItemGroup> 37 <ProjectReference Include="..\Microsoft.Management.Configuration\Microsoft.Management.Configuration.vcxproj"> 38 <OutputItemType>Content</OutputItemType> 39 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> 40 <ReferenceOutputAssembly>True</ReferenceOutputAssembly> 41 </ProjectReference> 42 </ItemGroup> 43 44 </Project>