-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreveal-sql-server.csproj
45 lines (40 loc) · 1.62 KB
/
reveal-sql-server.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>RevealSdk_Net7</RootNamespace>
<Platforms>AnyCPU;x64</Platforms>
<UserSecretsId>b6154fe7-6ef2-4b0a-b369-9dd622fd8293</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SqlServer.TransactSql.ScriptDom" Version="161.9142.1" />
<PackageReference Include="Reveal.Sdk.AspNetCore" Version="1.7.1" />
<PackageReference Include="Reveal.Sdk.Data.Microsoft.SqlServer" Version="1.7.1" />
<PackageReference Include="Reveal.Sdk.Dom" Version="0.1.198-beta" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.9.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="MyDashboards\" />
</ItemGroup>
<ItemGroup>
<None Update="Dashboards\Healthcare.rdash">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Dashboards\Logistics.rdash">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Dashboards\Market Rents.rdash">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Dashboards\Marketing.rdash">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Dashboards\Sales.rdash">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Dashboards\Telecomm.rdash">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>