Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ bld/
[Bb]in/
[Oo]bj/
[Ll]og/
.pkgrefgen/

# Visual Studio 2015/2017 cache/options directory
.vs/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<Content Include="properties\resources\ObsoleteProperties.txt" />
<Content Include="properties\resources\PermissionSetTemplate.txt" />
<Content Include="Properties\Resources\ReportPageTemplate.txt" />
<Content Include="properties\resources\RoleCenterActionTemplate.txt" />
<Content Include="Properties\Resources\RoleCenterExtensionTemplate.txt" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Mono.Options.Core" Version="1.0.0" />
</ItemGroup>
Expand All @@ -13,4 +21,19 @@
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
</ItemGroup>

<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>

<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>

</Project>
Loading