#PropertyGroup
"CodeQL detected code written in C# but could not process any of it"

This is not a comment on my code, rather that CodeQL in Github actions is having a hard time with .NET 10 installed.

My temp solution is to have a CodeQL configuration and in Directory.Build.props have a conditional Target.
November 11, 2025 at 10:30 PM
To fix Turnkey errors from 'Magick.NET-Q16-HDRI-AnyCPU' create a Directory.Build.props file in your root directory and put this in it:
<Project>
<PropertyGroup>
<NuGetAudit>false</NuGetAudit>
<WarningsNotAsErrors>NU1901;NU1902;NU1903;NU1904</WarningsNotAsErrors>
</PropertyGroup>
</Project>
February 13, 2026 at 8:56 PM
#Blender #Python any blender coders out there? I've been stuck on something for a while🫤It can be summarized as follows:
I need a PropertyGroup to point to another instance of the same PropertyGroup in a CollectionProperty.

Is there a magic solution? More details in🧵
May 13, 2025 at 8:56 PM
Crabstep 0.4.0 is now available, bringing large performance increases and a more straightforward API: github.com/ReagentX/cra... #Rust #RustLang
Release 0.4.0 · ReagentX/crabstep
Changes Breaking Property::Group now wraps a lazy PropertyGroup instead of Vec<Property>. Group items are resolved on demand and yielded by value (Property, not &Property). Archived::Object.data ...
github.com
May 29, 2026 at 10:54 PM
NativeAOT: Usage of `static virtual` method from interface gets miscompiled as infinite loop (110932) https://github.com/dotnet/runtime/issues/110932
NativeAOT: Usage of `static virtual` method from interface gets miscompiled as infinite loop · Issue #110932 · dotnet/runtime
Description In .NET9 NativeAOT, usage of a static virtual method from an interface sometimes gets miscompiled to an infinte loop. Reproduction Steps <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup...
github.com
December 24, 2024 at 8:27 PM
I've a PropertyGroup 'A' owning a CollectionProperty pointing to a PropertyGroup 'B'.

PropertyGroup 'B' is some kind of 'layer' that exposes a feature to possibly 'target' another layer in the CollectionProperty.
May 13, 2025 at 8:56 PM
Muda a cultura da aplicação pra Invariante.

<PropertyGroup>
<InvariantGlobalization>true</InvariantGlobalization>
</PropertyGroup>
January 5, 2025 at 5:54 PM
Combining Central Package Management with a Blazor WASM app and a ASP.NET Web API

#csharp #dotnet
Combining Central Package Management with a Blazor WASM app and a ASP.NET Web API
Is this possible? <PropertyGroup> <TargetFramework>net8.0</TargetFramework> <ImplicitUsings>enable</ImplicitUsings> </PropertyGroup> ...
old.reddit.com
February 4, 2025 at 6:23 PM
what do you mean if you include two different <DefineConstants> within different <PropertyGroup> in a visual C# project, that the second one will just completley overwrite the first.
March 11, 2025 at 6:34 AM
Error BC31091 Import of Type MarshalByRefObject from Assembly or Module failed
Hi, I Received the Above Error when I tried to run A VB.Net program that ran fine in 2022  in 2025. I Migrated the Program to .Net8.0  according to Giles instructions and I'm still receiving this error. Below is my.VBProj File. Any Help Would be Much Appreciated. Thanks. <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Library</OutputType> <RootNamespace>List_XL</RootNamespace> <AssemblyName>CD2</AssemblyName> <MyType>Windows</MyType> <PublishUrl>publish\</PublishUrl> <Install>true</Install> <InstallFrom>Disk</InstallFrom> <UpdateEnabled>false</UpdateEnabled> <UpdateMode>Foreground</UpdateMode> <UpdateInterval>7</UpdateInterval> <UpdateIntervalUnits>Days</UpdateIntervalUnits> <UpdatePeriodically>false</UpdatePeriodically> <UpdateRequired>false</UpdateRequired> <MapFileExtensions>true</MapFileExtensions> <ApplicationRevision>0</ApplicationRevision> <ApplicationVersion>1.0.0.%2a</ApplicationVersion> <IsWebBootstrapper>false</IsWebBootstrapper> <UseApplicationTrust>false</UseApplicationTrust> <BootstrapperEnabled>true</BootstrapperEnabled> <GenerateAssemblyInfo>false</GenerateAssemblyInfo> <UseWindowsForms>true</UseWindowsForms> <ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets> <TargetFramework>net8.0-windows</TargetFramework> <Copyright>Copyright © </Copyright> <AssemblyVersion>1.0.0.0</AssemblyVersion> <FileVersion>1.0.0.0</FileVersion> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DocumentationFile>CD2.xml</DocumentationFile> <NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022,42353,42354,42355</NoWarn> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <DefineDebug>false</DefineDebug> <DocumentationFile>CD2.xml</DocumentationFile> <NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022,42353,42354,42355</NoWarn> </PropertyGroup> <ItemGroup> <Reference Include="AcCoreMgd, Version=25.0.58.0.0, Culture=neutral, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> <HintPath>C:\ObjectARX 2025\inc\AcCoreMgd.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="AcDbMgd"> <HintPath>C:\ObjectARX 2025\inc\AcDbMgd.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="AcMgd"> <HintPath>C:\ObjectARX 2025\inc\AcMgd.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="AcWindows, Version=20.1.0.0, Culture=neutral, processorArchitecture=MSIL"> <Private>False</Private> </Reference> <Reference Include="AdWindows, Version=6.3.0.14, Culture=neutral, processorArchitecture=MSIL"> <Private>False</Private> </Reference> </ItemGroup> <ItemGroup> <FrameworkReference Include="Microsoft.WindowsDesktop.App" /> </ItemGroup> <ItemGroup> <Compile Update="Exel_Frm.Designer.vb"> <DependentUpon>Exel_Frm.vb</DependentUpon> </Compile> <Compile Update="My Project\Application.Designer.vb"> <AutoGen>True</AutoGen> <DependentUpon>Application.myapp</DependentUpon> </Compile> <Compile Update="My Project\Resources.Designer.vb"> <AutoGen>True</AutoGen> <DesignTime>True</DesignTime> <DependentUpon>Resources.resx</DependentUpon> </Compile> <Compile Update="My Project\Settings.Designer.vb"> <AutoGen>True</AutoGen> <DependentUpon>Settings.settings</DependentUpon> <DesignTimeSharedInput>True</DesignTimeSharedInput> </Compile> </ItemGroup> <ItemGroup> <None Update="My Project\Application.myapp"> <Generator>MyApplicationCodeGenerator</Generator> <LastGenOutput>Application.Designer.vb</LastGenOutput> </None> </ItemGroup> <ItemGroup> <BootstrapperPackage Include="Microsoft.Net.Client.3.5"> <Visible>False</Visible> <ProductName>.NET Framework Client Profile</ProductName> <Install>false</Install> </BootstrapperPackage> <BootstrapperPackage Include="Microsoft.Net.Framework.2.0"> <Visible>False</Visible> <ProductName>.NET Framework 2.0 %28x86%29</ProductName> <Install>false</Install> </BootstrapperPackage> <BootstrapperPackage Include="Microsoft.Net.Framework.3.0"> <Visible>False</Visible> <ProductName>.NET Framework 3.0 %28x86%29</ProductName> <Install>false</Install> </BootstrapperPackage> <BootstrapperPackage Include="Microsoft.Net.Framework.3.5"> <Visible>False</Visible> <ProductName>.NET Framework 3.5</ProductName> <Install>false</Install> </BootstrapperPackage> <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1"> <Visible>False</Visible> <ProductName>.NET Framework 3.5 SP1</ProductName> <Install>true</Install> </BootstrapperPackage> <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1"> <Visible>False</Visible> <ProductName>Windows Installer 3.1</ProductName> <Install>true</Install> </BootstrapperPackage> </ItemGroup> <ItemGroup> <COMReference Include="Microsoft.Office.Core"> <Guid>{2DF8D04C-5BFA-101B-BDE5-00AA0044DE52}</Guid> <VersionMajor>2</VersionMajor> <VersionMinor>8</VersionMinor> <Lcid>0</Lcid> <WrapperTool>primary</WrapperTool> <Isolated>False</Isolated> <EmbedInteropTypes>True</EmbedInteropTypes> </COMReference> <COMReference Include="Microsoft.Office.Interop.Excel"> <Guid>{00020813-0000-0000-C000-000000000046}</Guid> <VersionMajor>1</VersionMajor> <VersionMinor>9</VersionMinor> <Lcid>0</Lcid> <WrapperTool>primary</WrapperTool> <Isolated>False</Isolated> <EmbedInteropTypes>True</EmbedInteropTypes> </COMReference> <COMReference Include="VBIDE"> <Guid>{0002E157-0000-0000-C000-000000000046}</Guid> <VersionMajor>5</VersionMajor> <VersionMinor>3</VersionMinor> <Lcid>0</Lcid> <WrapperTool>primary</WrapperTool> <Isolated>False</Isolated> <EmbedInteropTypes>True</EmbedInteropTypes> </COMReference> </ItemGroup> </Project>
forums.autodesk.com
May 21, 2025 at 7:12 PM
The name 'InitializeComponent' does not exist in the current context
The name 'InitializeComponent' does not exist in the current context , where the mainwindow.xaml.cs and mainwindow.xaml is not binded properly . can someone help me to sort out this . below i'll mention images of both and also the .csproj file <Project Sdk="Microsoft.NET.Sdk.WindowsDesktop"> <PropertyGroup> <OutputType>WinExe</OutputType> <TargetFramework>net8.0-windows</TargetFramework> <UseWPF>true</UseWPF> <UseWindowsForms>true</UseWindowsForms> <RootNamespace>ReverseIntegration</RootNamespace> <AssemblyName>ReverseIntegration</AssemblyName> <Platforms>x64;AnyCPU</Platforms> <ApplicationIcon>LT.ico</ApplicationIcon> <GenerateAssemblyInfo>true</GenerateAssemblyInfo> <LangVersion>latest</LangVersion> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)'=='Debug'"> <DefineConstants>DEBUG;TRACE</DefineConstants> <DebugSymbols>true</DebugSymbols> <DebugType>portable</DebugType> <Optimize>false</Optimize> <OutputPath>bin\Debug\</OutputPath> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)'=='Release'"> <DefineConstants>TRACE</DefineConstants> <DebugType>portable</DebugType> <Optimize>true</Optimize> <OutputPath>bin\Release\</OutputPath> </PropertyGroup> <ItemGroup> <Reference Include="Autodesk.Connectivity.Explorer.Extensibility"> <HintPath>..\\..\Desktop\My tasks\Promote to realease - 4_6\Promote to realease - 4,6\VaultMenu\bin\Debug\Autodesk.Connectivity.Explorer.Extensibility.dll</HintPath> <Private>true</Private> </Reference> <Reference Include="Autodesk.Connectivity.Extensibility.Framework"> <HintPath>..\\..\Desktop\My tasks\Promote to realease - 4_6\Promote to realease - 4,6\VaultMenu\bin\Debug\Autodesk.Connectivity.Extensibility.Framework.dll</HintPath> <Private>true</Private> </Reference> <Reference Include="Autodesk.Connectivity.JobProcessor.Extensibility">   <HintPath>..\\..\\..\\..\Program Files\Autodesk\Vault Client 2026\Explorer\Autodesk.Connectivity.JobProcessor.Extensibility.dll</HintPath> </Reference> <Reference Include="Autodesk.Connectivity.WebServices">   <HintPath>..\\..\Desktop\My tasks\Promote to realease - 4_6\Promote to realease - 4,6\ExcelReader\bin\Debug\Autodesk.Connectivity.WebServices.dll</HintPath> </Reference> <Reference Include="Autodesk.Connectivity.WebServices.Interop">   <HintPath>..\\..\Desktop\My tasks\Promote to realease - 4_6\Promote to realease - 4,6\VaultMenu\bin\Debug\Autodesk.Connectivity.WebServices.Interop.dll</HintPath> </Reference> <Reference Include="Autodesk.DataManagement.Client.Framework">   <HintPath>..\\..\Desktop\My tasks\Promote to realease - 4_6\Promote to realease - 4,6\ExcelReader\bin\Debug\Autodesk.DataManagement.Client.Framework.dll</HintPath> </Reference> <Reference Include="Autodesk.DataManagement.Client.Framework.Forms">   <HintPath>..\\..\Desktop\My tasks\Promote to realease - 4_6\Promote to realease - 4,6\VaultMenu\bin\Debug\Autodesk.DataManagement.Client.Framework.Forms.dll</HintPath> </Reference> <Reference Include="Autodesk.DataManagement.Client.Framework.Vault">   <HintPath>..\\..\Desktop\My tasks\Promote to realease - 4_6\Promote to realease - 4,6\VaultMenu\bin\Debug\Autodesk.DataManagement.Client.Framework.Vault.dll</HintPath> </Reference> <Reference Include="Autodesk.DataManagement.Client.Framework.Vault.Forms"> <HintPath>..\\..\Desktop\My tasks\Promote to realease - 4_6\Promote to realease - 4,6\VaultMenu\bin\Debug\Autodesk.DataManagement.Client.Framework.Vault.Forms.dll</HintPath> <Private>true</Private> </Reference> <Reference Include="Excel">   <HintPath>..\\..\Desktop\My tasks\ReverseIntegration _2021\ReverseIntegration\bin\Debug\Excel.dll</HintPath> </Reference> <Reference Include="MahApps.Metro">   <HintPath>bin\Debug\MahApps.Metro.dll</HintPath> </Reference> <Reference Include="MahApps.Metro.Resources">   <HintPath>bin\Debug\MahApps.Metro.Resources.dll</HintPath> </Reference> </ItemGroup> <PropertyGroup> <EnableDefaultPageItems>false</EnableDefaultPageItems> </PropertyGroup> <ItemGroup> <ApplicationDefinition Include="App.xaml" /> <Compile Update="App.xaml.cs"> <DependentUpon>App.xaml</DependentUpon> </Compile> </ItemGroup> <ItemGroup> <None Include="LT.ico" /> </ItemGroup> </Project>
forums.autodesk.com
May 16, 2025 at 8:46 AM
vcxprojまたはcsprojで<PropertyGroup>の下に
- AppxPackage=false
- WindowsPackageType=None
- WindowsAppSDKSelfContained=true
の値をセットすると非パッケージ・自己完結型な野良アプリのビルドができた
September 8, 2024 at 12:02 PM
自作のBlenderアドオンで処理の途中でシェイプキーをいじると、PropertyGroupで設定された値(シェイプキーの指定)も影響されてずれてしまい、想定通りの動きをしないことがあるというバグを見つけたので直しました
September 4, 2025 at 11:39 AM
Intersting blog post. Thanks.

Being too lazy to figure all that out, I decided to solve the same with [CallerFilePath/MemberName] anyway and used a custom Attribute to get to them. Doesn't require PDB.

To enforce usage, my snapshot asserts refuse to work if class/method has not been decorated.
January 27, 2026 at 10:13 PM
🌐 whitfieldpropertygroup.com is available!
A professional, trust-led domain ideal for a real estate group, property management firm, or investment company.

🔗 Grab it now: godaddy.com/en-uk/domain...

#DomainForSale #PropertyGroup #RealEstateBrand #PropertyManagement #BusinessDomain
whitfieldpropertygroup.com is for sale! Check it out on ExpiredDomains.com
Buy whitfieldpropertygroup.com for 195 on GoDaddy via ExpiredDomains.com. This premium expired .com domain is ideal for Real Estate projects. Secure it today!
whitfieldpropertygroup.com
December 19, 2025 at 11:52 PM
Oh...
I'm expecting it to run on .NET 9 if .NET 8 is not there :^(
This is what I've set in the .csproj
<PropertyGroup>
...
<TargetFramework>net8.0</TargetFramework>
December 16, 2024 at 1:32 PM