diff options
-rw-r--r-- | LUFA/StudioIntegration/VSIX/extension.vsixmanifest | 5 | ||||
-rw-r--r-- | LUFA/StudioIntegration/makefile | 7 |
2 files changed, 8 insertions, 4 deletions
diff --git a/LUFA/StudioIntegration/VSIX/extension.vsixmanifest b/LUFA/StudioIntegration/VSIX/extension.vsixmanifest index 0c5b00810..8dd6de091 100644 --- a/LUFA/StudioIntegration/VSIX/extension.vsixmanifest +++ b/LUFA/StudioIntegration/VSIX/extension.vsixmanifest @@ -4,18 +4,19 @@ <Identifier Id="FourWalledCubicle.LUFA.0e160d5c-e331-48d9-850b-e0387912171b">
<Name>LUFA Library</Name>
<Author>Dean Camera</Author>
- <Version>00.00.00</Version>
+ <Version>0</Version>
<MoreInfoUrl>http://www.lufa-lib.org</MoreInfoUrl>
<Description xml:space="preserve">LUFA USB Framework</Description>
+ <License>LUFA\License.txt</License>
<Icon>LUFA\DoxygenPages\Images\LUFA_thumb.png</Icon>
<PreviewImage>LUFA\DoxygenPages\Images\LUFA.png</PreviewImage>
<SupportedProducts>
<IsolatedShell Version="6.1">AtmelStudio</IsolatedShell>
</SupportedProducts>
- <SupportedFrameworkRuntimeEdition MinVersion="4.0" MaxVersion="4.0" />
+ <SupportedFrameworkRuntimeEdition MinVersion="4.0" />
<Locale>1033</Locale>
</Identifier>
diff --git a/LUFA/StudioIntegration/makefile b/LUFA/StudioIntegration/makefile index 3cca3dae5..262923ae9 100644 --- a/LUFA/StudioIntegration/makefile +++ b/LUFA/StudioIntegration/makefile @@ -47,10 +47,13 @@ generate_xml: $(TEMP_MANIFEST_XML) @echo "Atmel Studio extension.xml file generated." generate_vsix: $(EXTENSION_OUTPUT_XML) $(MODULE_OUTPUT_XML) - @echo "Generating Atmel Studio VSIX Extension file..." + @echo "Creating VSIX Dependencies..." @cp "VSIX/[Content_Types].xml" $(LUFA_ROOT)/../ @xsltproc --stringparam extension-version $(EXT_VERSION_NUM) XSLT/lufa_vsmanifest_transform.xslt VSIX/extension.vsixmanifest > $(LUFA_ROOT)/../extension.vsixmanifest - @cd $(LUFA_ROOT)/../; zip LUFA_AS_Extension.vsix -q -9 -r --exclude=*StudioIntegration* * + + @echo "Generating Atmel Studio VSIX Extension file..." + @cd $(LUFA_ROOT)/../ && zip LUFA_AS_Extension.vsix -q -9 -r --exclude=*StudioIntegration* * + @echo "Atmel Studio VSIX Extension file generated." check_filenames: $(TEMP_MANIFEST_XML) @for i in `xsltproc XSLT/lufa_filelist_transform.xslt $< | grep -v "^<" | sed -e "/^$$/d"`; do \ |