Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>csproj ExtensionsNew to Visual Studio Code? Get it now.
csproj Extensions

csproj Extensions

Selcuk Ermaya

|
15,412 installs
| (0) | Free
Intellisense for your csproj files. It will detect your props file and will give you completion for it.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

csproj-extensions

It will powerup your csproj files while you editing it in VS Code.

Features

Now, it only supports parameters (props) files like <Import Project="dependencies.props" />. It will add a completion for those parameters.

For example. If you have a props file depended to your csproj file, It will show you the parameters that you can use.

Example csproj file

<Project Sdk="Microsoft.NET.Sdk">
  <Import Project="dependencies.props" />
  <PropertyGroup>
    <TargetFramework>$(DotNetCoreAppVersion)</TargetFramework>
  </PropertyGroup>
  <ItemGroup>
    <PackageReference Include="System.Management.Automation" Version="$(ManagementAutomationVersion)" />
  </ItemGroup>
</Project>

Example props file

<Project>
  <PropertyGroup>
    <DotNetCoreAppVersion>netcoreapp3.1</DotNetCoreAppVersion>
	<ManagementAutomationVersion>6.2.4</ManagementAutomationVersion>
  </PropertyGroup>
</Project>

In action

How it works?

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft