You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "Remember that MSBuild SDK post from last week? Well, I actually built something with it - an SDK that brings modern project files to Visual Studio extension development."
6
6
---
7
7
8
-
Remember [that post I wrote last week](/2025/creating-your-own-msbuild-sdk-it-s-easier-than-you-think) about creating MSBuild SDKs? Well, I wasn't just writing that for fun - I was actually building something with all that knowledge.
8
+
Remember [that post I wrote last week](https://www.codingwithcalvin.net/creating-your-own-msbuild-sdk-it-s-easier-than-you-think) about creating MSBuild SDKs? Well, I wasn't just writing that for fun - I was actually building something with all that knowledge.
9
9
10
10
I've released [CodingWithCalvin.VsixSdk](https://www.nuget.org/packages/CodingWithCalvin.VsixSdk/), an MSBuild SDK that brings modern SDK-style `.csproj` files to Visual Studio extension development. No more XML soup!
11
11
@@ -33,7 +33,6 @@ With my new SDK, your VSIX project can look like this:
33
33
34
34
```xml
35
35
<ProjectSdk="CodingWithCalvin.VsixSdk/0.3.0">
36
-
37
36
<PropertyGroup>
38
37
<TargetFramework>net48</TargetFramework>
39
38
<RootNamespace>MyAwesomeExtension</RootNamespace>
@@ -43,7 +42,6 @@ With my new SDK, your VSIX project can look like this:
0 commit comments