Skip to content

Commit 809eb8b

Browse files
authored
Adding new samples for column level security (#725)
* add .NET SDK sample files * fix .gitignore * Added column level security sample files * add launch.json * Ensure that Exported files folder is checked in * Adding generated solution files
1 parent 8fbc814 commit 809eb8b

19 files changed

+6835
-4
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
bin
2+
obj
3+
.vs
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>net8.0</TargetFramework>
6+
<RootNamespace>PowerPlatform_Dataverse_CodeSamples</RootNamespace>
7+
<ImplicitUsings>enable</ImplicitUsings>
8+
<Nullable>enable</Nullable>
9+
</PropertyGroup>
10+
11+
<ItemGroup>
12+
<PackageReference Include="ConsoleTables" Version="2.7.0" />
13+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.7" />
14+
<PackageReference Include="Microsoft.PowerPlatform.Dataverse.Client" Version="1.2.9" />
15+
</ItemGroup>
16+
17+
<ItemGroup>
18+
<None Update="appsettings.json">
19+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
20+
</None>
21+
</ItemGroup>
22+
23+
</Project>
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.14.36310.24 d17.14
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ColumnLevelSecurity", "ColumnLevelSecurity.csproj", "{600EC62D-285D-4C06-B6F8-A9AF6EAE2F75}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{600EC62D-285D-4C06-B6F8-A9AF6EAE2F75}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{600EC62D-285D-4C06-B6F8-A9AF6EAE2F75}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{600EC62D-285D-4C06-B6F8-A9AF6EAE2F75}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{600EC62D-285D-4C06-B6F8-A9AF6EAE2F75}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {3D1DBD1C-B478-4828-AF59-A67EDC97F3C3}
24+
EndGlobalSection
25+
EndGlobal

0 commit comments

Comments
 (0)