-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix ExplicitRegistration attribute placement in .dna files
- Loading branch information
Showing
3 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
Source/Samples/Registration.Sample.FSharp/Registration.Sample.FSharp-AddIn.dna
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<DnaLibrary Name="Registration.Sample.FSharp Add-In" RuntimeVersion="v4.0" ExplicitRegistration="true"> | ||
<ExternalLibrary Path="Registration.Sample.FSharp.dll" LoadFromBytes="true" Pack="true" /> | ||
<DnaLibrary Name="Registration.Sample.FSharp Add-In" RuntimeVersion="v4.0" > | ||
<ExternalLibrary Path="Registration.Sample.FSharp.dll" ExplicitRegistration="true" LoadFromBytes="true" Pack="true" /> | ||
</DnaLibrary> |
4 changes: 2 additions & 2 deletions
4
Source/Samples/Registration.Sample.VisualBasic/Registration.Sample.VisualBasic-AddIn.dna
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<DnaLibrary Name="Registration.Sample.VisualBasic Add-In" RuntimeVersion="v4.0" ExplicitRegistration="true"> | ||
<ExternalLibrary Path="Registration.Sample.VisualBasic.dll" LoadFromBytes="true" Pack="true" /> | ||
<DnaLibrary Name="Registration.Sample.VisualBasic Add-In" RuntimeVersion="v4.0" > | ||
<ExternalLibrary Path="Registration.Sample.VisualBasic.dll" ExplicitRegistration="true" LoadFromBytes="true" Pack="true" /> | ||
</DnaLibrary> |
4 changes: 2 additions & 2 deletions
4
Source/Samples/Registration.Sample/Registration.Sample-AddIn.dna
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<DnaLibrary Name="Registration.Sample Add-In" RuntimeVersion="v4.0" ExplicitRegistration="true"> | ||
<ExternalLibrary Path="Registration.Sample.dll" LoadFromBytes="true" Pack="true" /> | ||
<DnaLibrary Name="Registration.Sample Add-In" RuntimeVersion="v4.0" > | ||
<ExternalLibrary Path="Registration.Sample.dll" ExplicitRegistration="true" LoadFromBytes="true" Pack="true" /> | ||
</DnaLibrary> |