Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't update Project file for .NET SDK Style Projects #491

Closed
daryllabar opened this issue Apr 18, 2024 · 1 comment
Closed

Don't update Project file for .NET SDK Style Projects #491

daryllabar opened this issue Apr 18, 2024 · 1 comment

Comments

@daryllabar
Copy link
Owner

https://learn.microsoft.com/en-us/dotnet/core/project-sdk/overview
There are default includes there https://learn.microsoft.com/en-us/dotnet/core/project-sdk/overview#default-includes-and-excludes

Simple .csproj
FastUpToDate support in VS https://github.com/dotnet/project-system/blob/main/docs/up-to-date-check.md

One can convert .net framework projects to sdk style.

@daryllabar
Copy link
Owner Author

<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <TargetFramework>net8.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>enable</Nullable>
  </PropertyGroup>

  <ItemGroup>
    <PackageReference Include="Microsoft.PowerPlatform.Dataverse.Client" Version="1.1.22" />
  </ItemGroup>

</Project>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant