-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
53ae4dc
commit 6de8f47
Showing
2 changed files
with
28 additions
and
16 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
using System.Reflection; | ||
using System.Resources; | ||
using System.Runtime.CompilerServices; | ||
using System.Runtime.InteropServices; | ||
using System.Runtime.Versioning; | ||
|
||
[assembly: AssemblyTitle("Bravo for Power BI")] | ||
[assembly: AssemblyDescription("Bravo for Power BI")] | ||
[assembly: AssemblyCompany("SQLBI Corporation")] | ||
[assembly: AssemblyProduct("Bravo for Power BI")] | ||
[assembly: AssemblyCopyright("© SQLBI Corporation")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: AssemblyCulture("")] | ||
[assembly: AssemblyVersion("0.0.0.999")] | ||
[assembly: AssemblyInformationalVersion("0.0.0.999-DEV")] | ||
#if DEBUG | ||
[assembly: AssemblyConfiguration("Debug")] | ||
#else | ||
[assembly: AssemblyConfiguration("Release")] | ||
#endif | ||
|
||
[assembly: ComVisible(false)] | ||
[assembly: NeutralResourcesLanguage("en-US")] | ||
[assembly: SupportedOSPlatform("Windows7.0")] | ||
[assembly: TargetPlatform("Windows7.0")] | ||
|
||
[assembly: InternalsVisibleTo("Bravo.Tests")] |