GodotTools.IdeMessaging.csproj 1.2 KB

1234567891011121314151617181920212223242526
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <ProjectGuid>{92600954-25F0-4291-8E11-1FEE9FC4BE20}</ProjectGuid>
  4. <TargetFramework>netstandard2.0</TargetFramework>
  5. <LangVersion>9</LangVersion>
  6. <Nullable>enable</Nullable>
  7. <PackageId>GodotTools.IdeMessaging</PackageId>
  8. <Version>1.1.2</Version>
  9. <AssemblyVersion>$(Version)</AssemblyVersion>
  10. <Authors>Godot Engine contributors</Authors>
  11. <Company />
  12. <PackageTags>godot</PackageTags>
  13. <RepositoryUrl>https://github.com/godotengine/godot/tree/master/modules/mono/editor/GodotTools/GodotTools.IdeMessaging</RepositoryUrl>
  14. <PackageLicenseExpression>MIT</PackageLicenseExpression>
  15. <Copyright>Copyright (c) Godot Engine contributors</Copyright>
  16. <Description>
  17. This library enables communication with the Godot Engine editor (the version with .NET support).
  18. It's intended for use in IDEs/editors plugins for a better experience working with Godot C# projects.
  19. A client using this library is only compatible with servers of the same major version and of a lower or equal minor version.
  20. </Description>
  21. </PropertyGroup>
  22. <ItemGroup>
  23. <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
  24. </ItemGroup>
  25. </Project>