forked from OCram85/PSCredentialStore
Marco Blessing
d4b00a5308
#### 📖 Summary - update Pester tests to Pester5+ compatiple layout - switch to dotnet base imaged - dotnet binary required for publishung powershell modules (Publish-Module) #### 📑 Test Plan > 💡 Select your test plan for the code changes. - [x] Tested via Drone.io pipeline - [ ] Custom test - [ ] No test plan ##### Details / Justification <!-- Add your test details or justification for missing tests here. --> #### 📚 Additional Notes <!-- A place for additional detail notes. --> Co-authored-by: OCram85 <marco.blessing@googlemail.com> Reviewed-on: OCram85/PSCredentialStore#59
44 lines
1.9 KiB
XML
44 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<Configuration>
|
|
<ViewDefinitions>
|
|
<View>
|
|
<Name>PSCredentialStore.Certificate.Attribute</Name>
|
|
<ViewSelectedBy>
|
|
<TypeName>PSCredentialStore.Certificate.Attribute</TypeName>
|
|
</ViewSelectedBy>
|
|
<ListControl>
|
|
<ListEntries>
|
|
<ListEntry>
|
|
<ListItems>
|
|
<ListItem>
|
|
<Label>Country</Label>
|
|
<ScriptBlock>$_.Subject.Country</ScriptBlock>
|
|
</ListItem>
|
|
<ListItem>
|
|
<Label>State</Label>
|
|
<ScriptBlock>$_.Subject.State</ScriptBlock>
|
|
</ListItem>
|
|
<ListItem>
|
|
<Label>City</Label>
|
|
<ScriptBlock>$_.Subject.City</ScriptBlock>
|
|
</ListItem>
|
|
<ListItem>
|
|
<Label>Organization</Label>
|
|
<ScriptBlock>$_.Subject.Organization</ScriptBlock>
|
|
</ListItem>
|
|
<ListItem>
|
|
<Label>OrganizationalUnitName</Label>
|
|
<ScriptBlock>$_.Subject.OrganizationalUnitName</ScriptBlock>
|
|
</ListItem>
|
|
<ListItem>
|
|
<Label>CommonName</Label>
|
|
<ScriptBlock>$_.Subject.CommonName</ScriptBlock>
|
|
</ListItem>
|
|
</ListItems>
|
|
</ListEntry>
|
|
</ListEntries>
|
|
</ListControl>
|
|
</View>
|
|
</ViewDefinitions>
|
|
</Configuration>
|