Skip to content

Commit f766e1b

Browse files
sailroPackage Release Automation
authored andcommitted
Integration: - Add support for Visual Studio Code. Project generation: - Add support for Sdk Style poject generation. - Fix an issue related to missing properties with 2021.3.
2 parents 09d7d03 + 5b55754 commit f766e1b

File tree

6 files changed

+24
-6
lines changed

6 files changed

+24
-6
lines changed

.yamato/CI.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
codeeditor: visualstudio
22

33
editors:
4+
- version: 2019.4
45
- version: 2020.3
56
- version: 2021.3
67
- version: 2022.3

Packages/com.unity.ide.visualstudio.tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "com.unity.ide.visualstudio.tests",
44
"displayName": "Visual Studio Editor",
55
"description": "Code editor integration for supporting Visual Studio as code editor for unity. Adds support for generating csproj files for intellisense purposes, auto discovery of installations, etc.",
6-
"version": "2.0.18",
6+
"version": "2.0.19",
77
"unity": "2019.4",
88
"unityRelease": "25f1",
99
"dependencies": {

Packages/com.unity.ide.visualstudio/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Code Editor Package for Visual Studio
22

3+
## [2.0.19] - 2023-06-14
4+
5+
Integration:
6+
7+
- Add support for Visual Studio Code.
8+
9+
Project generation:
10+
11+
- Add support for Sdk Style poject generation.
12+
- Fix an issue related to missing properties with 2021.3.
13+
14+
315
## [2.0.18] - 2023-03-17
416

517
Integration:

Packages/com.unity.ide.visualstudio/ValidationExceptions.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,13 @@
22
"ErrorExceptions": [
33
{
44
"ValidationTest": "API Validation",
5-
"ExceptionMessage": "Failed comparing against assemblies of previously promoted version of package. \nThis is most likely because the assemblies that were compared against were built with a different version of Unity. \nIf you are certain that there are no API changes warranting bumping the package version then you can add an exception for this error:\nRead more about this error and potential solutions at https://docs.unity3d.com/Packages/com.unity.package-validation-suite@latest/index.html?preview=1&subfolder=/manual/validation_exceptions.html#",
6-
"PackageVersion": "2.0.11"
5+
"ExceptionMessage": "Breaking changes require a new major version.",
6+
"PackageVersion": "2.0.18"
7+
},
8+
{
9+
"ValidationTest": "API Validation",
10+
"ExceptionMessage": "Additions require a new minor or major version.",
11+
"PackageVersion": "2.0.18"
712
}
813
],
914
"WarningExceptions": []

Packages/com.unity.ide.visualstudio/ValidationExceptions.json.meta

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Packages/com.unity.ide.visualstudio/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
"name": "com.unity.ide.visualstudio",
33
"displayName": "Visual Studio Editor",
44
"description": "Code editor integration for supporting Visual Studio as code editor for unity. Adds support for generating csproj files for intellisense purposes, auto discovery of installations, etc.",
5-
"version": "2.0.18",
5+
"version": "2.0.19",
66
"unity": "2019.4",
77
"unityRelease": "25f1",
88
"dependencies": {
99
"com.unity.test-framework": "1.1.9"
1010
},
1111
"relatedPackages": {
12-
"com.unity.ide.visualstudio.tests": "2.0.18"
12+
"com.unity.ide.visualstudio.tests": "2.0.19"
1313
}
1414
}

0 commit comments

Comments
 (0)