Skip to content

Commit

Permalink
Add AssemblyInfo.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
albertospelta committed Dec 6, 2024
1 parent 53ae4dc commit 6de8f47
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 16 deletions.
17 changes: 1 addition & 16 deletions src/Bravo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,14 @@
<!--AnalysisMode>all</AnalysisMode-->
<AnalysisLevel>latest</AnalysisLevel>
<RootNamespace>Sqlbi.Bravo</RootNamespace>
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
<Configurations>$(Configurations);Debug_wwwroot</Configurations>
<ApplicationIcon>Assets\bravo.ico</ApplicationIcon>
<ApplicationHighDpiMode>PerMonitorV2</ApplicationHighDpiMode>
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
<IncludeOpenAPIAnalyzers>true</IncludeOpenAPIAnalyzers>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<NeutralLanguage>en-US</NeutralLanguage>
<SatelliteResourceLanguages>en-US</SatelliteResourceLanguages>
<Company>SQLBI</Company>
<Product>Bravo for Power BI</Product>
<Copyright>SQLBI Corporation</Copyright>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)' != 'Release'">
<Version>0.0.0.999</Version>
<InformationalVersion>0.0.0.999-DEV</InformationalVersion>
<GenerateDocumentationFile >true</GenerateDocumentationFile>
</PropertyGroup>

<Choose>
Expand All @@ -41,12 +32,6 @@
</Otherwise>
</Choose>

<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>$(AssemblyName).Tests</_Parameter1>
</AssemblyAttribute>
</ItemGroup>

<ItemGroup>
<PackageReference Include="CsvHelper" Version="33.0.1" />
<PackageReference Include="Dax.Model.Extractor" Version="1.9.0" />
Expand Down
27 changes: 27 additions & 0 deletions src/Properties/AssemblyInfo.cs
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")]

0 comments on commit 6de8f47

Please sign in to comment.