├── Sitefinity
├── Sitefinity CLI.Tests
├── UpgradeCommandTests
│ ├── Mocks
│ │ ├── fake.sln
│ │ ├── fakeSln.sln
│ │ ├── fakeSlnx.slnx
│ │ ├── PromptServiceMock.cs
│ │ ├── VisualStudioServiceMock.cs
│ │ └── SitefinityConfigServiceMock.cs
│ └── SitefinityPackageManagerTests
│ │ └── Data
│ │ ├── NetFrameworkOnlyAssemblies
│ │ └── lib
│ │ │ ├── net35
│ │ │ └── net35.dll
│ │ │ ├── net45
│ │ │ └── net45.dll
│ │ │ ├── net48
│ │ │ └── net48.dll
│ │ │ ├── net461
│ │ │ └── net461.dll
│ │ │ ├── net471
│ │ │ └── net471.dll
│ │ │ ├── net472
│ │ │ └── net472.dll
│ │ │ └── netstandard2.0
│ │ │ └── netstandard2.0.dll
│ │ └── NetStandardOnlyAssemblies
│ │ └── lib
│ │ ├── netstandard1.0
│ │ └── netstandard1.0.dll
│ │ └── netstandard2.0
│ │ └── netstandard2.0.dll
└── SolutionFileEditorTests
│ └── Data
│ ├── WithoutElementsSlnx.template
│ ├── WithElementsSlnx.template
│ └── WithoutElementsSln.template
├── Sitefinity CLI
├── Templates
│ ├── 14.4
│ │ ├── PageTemplate
│ │ │ └── Test.config.json
│ │ ├── ResourcePackage
│ │ │ ├── Bootstrap4
│ │ │ │ ├── assets
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── vendors
│ │ │ │ │ │ ├── _all.scss
│ │ │ │ │ │ └── _magnific-popup.scss
│ │ │ │ │ │ ├── sitefinity
│ │ │ │ │ │ └── sass
│ │ │ │ │ │ │ ├── utilities
│ │ │ │ │ │ │ └── _text.scss
│ │ │ │ │ │ │ ├── widgets
│ │ │ │ │ │ │ ├── feed
│ │ │ │ │ │ │ │ └── _sf-feed.scss
│ │ │ │ │ │ │ ├── code
│ │ │ │ │ │ │ │ └── _sf-code.scss
│ │ │ │ │ │ │ ├── searchResults
│ │ │ │ │ │ │ │ └── _sf-search-results.scss
│ │ │ │ │ │ │ ├── documentList
│ │ │ │ │ │ │ │ └── _sf-document-list.scss
│ │ │ │ │ │ │ ├── login
│ │ │ │ │ │ │ │ └── _sf-login.scss
│ │ │ │ │ │ │ ├── contentBlock
│ │ │ │ │ │ │ │ └── _sf-content-block.scss
│ │ │ │ │ │ │ ├── navigation
│ │ │ │ │ │ │ │ └── _sf-stacked.scss
│ │ │ │ │ │ │ ├── fileField
│ │ │ │ │ │ │ │ └── _sf-file-field.scss
│ │ │ │ │ │ │ ├── taxonomies
│ │ │ │ │ │ │ │ └── _sf-tags.scss
│ │ │ │ │ │ │ ├── facets
│ │ │ │ │ │ │ │ └── _sf-facets.scss
│ │ │ │ │ │ │ ├── siteSelector
│ │ │ │ │ │ │ │ └── _sf-site-selector.scss
│ │ │ │ │ │ │ └── form
│ │ │ │ │ │ │ │ └── _sf-form.scss
│ │ │ │ │ │ │ ├── base
│ │ │ │ │ │ │ ├── _media.scss
│ │ │ │ │ │ │ ├── _list.scss
│ │ │ │ │ │ │ ├── _pre.scss
│ │ │ │ │ │ │ └── _rtl.scss
│ │ │ │ │ │ │ └── tools
│ │ │ │ │ │ │ ├── _bootstrap-mixins.scss
│ │ │ │ │ │ │ └── _placeholder-selectors.scss
│ │ │ │ │ │ └── project
│ │ │ │ │ │ └── sass
│ │ │ │ │ │ ├── main.scss
│ │ │ │ │ │ └── adminapp
│ │ │ │ │ │ └── editor.scss
│ │ │ │ ├── razorgenerator.directives
│ │ │ │ ├── MVC
│ │ │ │ │ └── Views
│ │ │ │ │ │ ├── Form
│ │ │ │ │ │ └── Form.SubmitResultView.cshtml
│ │ │ │ │ │ ├── SearchResults
│ │ │ │ │ │ └── InputValidationError.cshtml
│ │ │ │ │ │ ├── StyleSheet
│ │ │ │ │ │ └── Index.cshtml
│ │ │ │ │ │ ├── EmailTextField
│ │ │ │ │ │ └── Read.Default.cshtml
│ │ │ │ │ │ ├── DropdownListField
│ │ │ │ │ │ └── Read.Default.cshtml
│ │ │ │ │ │ ├── ParagraphTextField
│ │ │ │ │ │ └── Read.Default.cshtml
│ │ │ │ │ │ ├── CheckboxesField
│ │ │ │ │ │ └── Read.Default.cshtml
│ │ │ │ │ │ ├── MultipleChoiceField
│ │ │ │ │ │ └── Read.Default.cshtml
│ │ │ │ │ │ ├── SectionHeader
│ │ │ │ │ │ └── Read.Default.cshtml
│ │ │ │ │ │ ├── HiddenField
│ │ │ │ │ │ └── Read.Default.cshtml
│ │ │ │ │ │ ├── TextField
│ │ │ │ │ │ └── Read.Default.cshtml
│ │ │ │ │ │ ├── ContentBlock
│ │ │ │ │ │ └── Default.cshtml
│ │ │ │ │ │ ├── UnsubscribeForm
│ │ │ │ │ │ └── UnsubscribeFormByLink.UnsubscribeMessage.cshtml
│ │ │ │ │ │ ├── FlatTaxonomy
│ │ │ │ │ │ ├── FlatTaxonomy.SimpleList.cshtml
│ │ │ │ │ │ ├── FlatTaxonomy.CloudList.cshtml
│ │ │ │ │ │ └── FlatTaxonomy.TagCloud.cshtml
│ │ │ │ │ │ ├── EmbedCode
│ │ │ │ │ │ └── Index.cshtml
│ │ │ │ │ │ ├── HierarchicalTaxonomy
│ │ │ │ │ │ └── HierarchicalTaxonomy.CategoriesList.cshtml
│ │ │ │ │ │ ├── AccountActivation
│ │ │ │ │ │ └── AccountActivation.AccountActivation.cshtml
│ │ │ │ │ │ └── JavaScript
│ │ │ │ │ │ └── Index.cshtml
│ │ │ │ └── GridSystem
│ │ │ │ │ └── Templates
│ │ │ │ │ ├── container.html
│ │ │ │ │ ├── grid-12.html
│ │ │ │ │ ├── grid-3+9.html
│ │ │ │ │ ├── grid-4+8.html
│ │ │ │ │ ├── grid-6+6.html
│ │ │ │ │ ├── grid-8+4.html
│ │ │ │ │ ├── grid-9+3.html
│ │ │ │ │ ├── grid-3+6+3.html
│ │ │ │ │ ├── grid-4+4+4.html
│ │ │ │ │ ├── grid-3+3+3+3.html
│ │ │ │ │ └── grid-2+3+2+3+2.html
│ │ │ └── Bootstrap5
│ │ │ │ ├── assets
│ │ │ │ └── src
│ │ │ │ │ ├── vendors
│ │ │ │ │ └── _index.scss
│ │ │ │ │ ├── sitefinity
│ │ │ │ │ └── sass
│ │ │ │ │ │ └── _index.scss
│ │ │ │ │ └── project
│ │ │ │ │ └── sass
│ │ │ │ │ ├── main.scss
│ │ │ │ │ └── adminapp
│ │ │ │ │ └── editor.scss
│ │ │ │ ├── razorgenerator.directives
│ │ │ │ ├── GridSystem
│ │ │ │ └── Templates
│ │ │ │ │ ├── container.html
│ │ │ │ │ ├── grid-12.html
│ │ │ │ │ ├── grid-3+9.html
│ │ │ │ │ ├── grid-4+8.html
│ │ │ │ │ ├── grid-6+6.html
│ │ │ │ │ ├── grid-8+4.html
│ │ │ │ │ ├── grid-9+3.html
│ │ │ │ │ ├── grid-3+6+3.html
│ │ │ │ │ ├── grid-4+4+4.html
│ │ │ │ │ ├── grid-3+3+3+3.html
│ │ │ │ │ └── grid-2+3+2+3+2.html
│ │ │ │ └── MVC
│ │ │ │ └── Views
│ │ │ │ ├── SearchResults
│ │ │ │ └── InputValidationError.cshtml
│ │ │ │ ├── Form
│ │ │ │ └── Form.SubmitResultView.cshtml
│ │ │ │ ├── EmailTextField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── CheckboxesField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── DropdownListField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── ParagraphTextField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── MultipleChoiceField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── SectionHeader
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── TextField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── HiddenField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── StyleSheet
│ │ │ │ └── Index.cshtml
│ │ │ │ ├── ContentBlock
│ │ │ │ └── Default.cshtml
│ │ │ │ ├── UnsubscribeForm
│ │ │ │ └── UnsubscribeFormByLink.UnsubscribeMessage.cshtml
│ │ │ │ ├── FlatTaxonomy
│ │ │ │ ├── FlatTaxonomy.SimpleList.cshtml
│ │ │ │ ├── FlatTaxonomy.CloudList.cshtml
│ │ │ │ └── FlatTaxonomy.TagCloud.cshtml
│ │ │ │ ├── EmbedCode
│ │ │ │ └── Index.cshtml
│ │ │ │ ├── HierarchicalTaxonomy
│ │ │ │ └── HierarchicalTaxonomy.CategoriesList.cshtml
│ │ │ │ └── JavaScript
│ │ │ │ └── Index.cshtml
│ │ ├── CustomWidget
│ │ │ └── Default
│ │ │ │ ├── View.Template
│ │ │ │ ├── Model.Template
│ │ │ │ └── templates.json
│ │ ├── IntegrationTests
│ │ │ └── Default
│ │ │ │ ├── IntegrationTestsSettings.json.Template
│ │ │ │ └── templates.json
│ │ ├── GridWidget
│ │ │ └── grid-6+6.Template
│ │ └── Module
│ │ │ └── Default
│ │ │ └── templates.json
│ ├── 15.0
│ │ ├── PageTemplate
│ │ │ └── Test.config.json
│ │ ├── ResourcePackage
│ │ │ ├── Bootstrap4
│ │ │ │ ├── assets
│ │ │ │ │ └── src
│ │ │ │ │ │ ├── vendors
│ │ │ │ │ │ ├── _all.scss
│ │ │ │ │ │ └── _magnific-popup.scss
│ │ │ │ │ │ ├── sitefinity
│ │ │ │ │ │ └── sass
│ │ │ │ │ │ │ ├── utilities
│ │ │ │ │ │ │ └── _text.scss
│ │ │ │ │ │ │ ├── widgets
│ │ │ │ │ │ │ ├── feed
│ │ │ │ │ │ │ │ └── _sf-feed.scss
│ │ │ │ │ │ │ ├── code
│ │ │ │ │ │ │ │ └── _sf-code.scss
│ │ │ │ │ │ │ ├── searchResults
│ │ │ │ │ │ │ │ └── _sf-search-results.scss
│ │ │ │ │ │ │ ├── documentList
│ │ │ │ │ │ │ │ └── _sf-document-list.scss
│ │ │ │ │ │ │ ├── login
│ │ │ │ │ │ │ │ └── _sf-login.scss
│ │ │ │ │ │ │ ├── contentBlock
│ │ │ │ │ │ │ │ └── _sf-content-block.scss
│ │ │ │ │ │ │ ├── navigation
│ │ │ │ │ │ │ │ └── _sf-stacked.scss
│ │ │ │ │ │ │ ├── fileField
│ │ │ │ │ │ │ │ └── _sf-file-field.scss
│ │ │ │ │ │ │ ├── taxonomies
│ │ │ │ │ │ │ │ └── _sf-tags.scss
│ │ │ │ │ │ │ ├── facets
│ │ │ │ │ │ │ │ └── _sf-facets.scss
│ │ │ │ │ │ │ ├── siteSelector
│ │ │ │ │ │ │ │ └── _sf-site-selector.scss
│ │ │ │ │ │ │ └── form
│ │ │ │ │ │ │ │ └── _sf-form.scss
│ │ │ │ │ │ │ ├── base
│ │ │ │ │ │ │ ├── _media.scss
│ │ │ │ │ │ │ ├── _list.scss
│ │ │ │ │ │ │ ├── _pre.scss
│ │ │ │ │ │ │ └── _rtl.scss
│ │ │ │ │ │ │ └── tools
│ │ │ │ │ │ │ ├── _bootstrap-mixins.scss
│ │ │ │ │ │ │ └── _placeholder-selectors.scss
│ │ │ │ │ │ └── project
│ │ │ │ │ │ └── sass
│ │ │ │ │ │ ├── main.scss
│ │ │ │ │ │ └── adminapp
│ │ │ │ │ │ └── editor.scss
│ │ │ │ ├── razorgenerator.directives
│ │ │ │ ├── MVC
│ │ │ │ │ └── Views
│ │ │ │ │ │ ├── Form
│ │ │ │ │ │ └── Form.SubmitResultView.cshtml
│ │ │ │ │ │ ├── SearchResults
│ │ │ │ │ │ └── InputValidationError.cshtml
│ │ │ │ │ │ ├── StyleSheet
│ │ │ │ │ │ └── Index.cshtml
│ │ │ │ │ │ ├── EmailTextField
│ │ │ │ │ │ └── Read.Default.cshtml
│ │ │ │ │ │ ├── CheckboxesField
│ │ │ │ │ │ └── Read.Default.cshtml
│ │ │ │ │ │ ├── DropdownListField
│ │ │ │ │ │ └── Read.Default.cshtml
│ │ │ │ │ │ ├── ParagraphTextField
│ │ │ │ │ │ └── Read.Default.cshtml
│ │ │ │ │ │ ├── MultipleChoiceField
│ │ │ │ │ │ └── Read.Default.cshtml
│ │ │ │ │ │ ├── SectionHeader
│ │ │ │ │ │ └── Read.Default.cshtml
│ │ │ │ │ │ ├── HiddenField
│ │ │ │ │ │ └── Read.Default.cshtml
│ │ │ │ │ │ ├── TextField
│ │ │ │ │ │ └── Read.Default.cshtml
│ │ │ │ │ │ ├── ContentBlock
│ │ │ │ │ │ └── Default.cshtml
│ │ │ │ │ │ ├── UnsubscribeForm
│ │ │ │ │ │ └── UnsubscribeFormByLink.UnsubscribeMessage.cshtml
│ │ │ │ │ │ ├── FlatTaxonomy
│ │ │ │ │ │ ├── FlatTaxonomy.SimpleList.cshtml
│ │ │ │ │ │ ├── FlatTaxonomy.CloudList.cshtml
│ │ │ │ │ │ └── FlatTaxonomy.TagCloud.cshtml
│ │ │ │ │ │ ├── EmbedCode
│ │ │ │ │ │ └── Index.cshtml
│ │ │ │ │ │ ├── HierarchicalTaxonomy
│ │ │ │ │ │ └── HierarchicalTaxonomy.CategoriesList.cshtml
│ │ │ │ │ │ ├── AccountActivation
│ │ │ │ │ │ └── AccountActivation.AccountActivation.cshtml
│ │ │ │ │ │ └── JavaScript
│ │ │ │ │ │ └── Index.cshtml
│ │ │ │ └── GridSystem
│ │ │ │ │ └── Templates
│ │ │ │ │ ├── container.html
│ │ │ │ │ ├── grid-12.html
│ │ │ │ │ ├── grid-3+9.html
│ │ │ │ │ ├── grid-4+8.html
│ │ │ │ │ ├── grid-6+6.html
│ │ │ │ │ ├── grid-8+4.html
│ │ │ │ │ ├── grid-9+3.html
│ │ │ │ │ ├── grid-3+6+3.html
│ │ │ │ │ ├── grid-4+4+4.html
│ │ │ │ │ ├── grid-3+3+3+3.html
│ │ │ │ │ └── grid-2+3+2+3+2.html
│ │ │ └── Bootstrap5
│ │ │ │ ├── assets
│ │ │ │ └── src
│ │ │ │ │ ├── vendors
│ │ │ │ │ └── _index.scss
│ │ │ │ │ ├── sitefinity
│ │ │ │ │ └── sass
│ │ │ │ │ │ └── _index.scss
│ │ │ │ │ └── project
│ │ │ │ │ └── sass
│ │ │ │ │ ├── main.scss
│ │ │ │ │ └── adminapp
│ │ │ │ │ └── editor.scss
│ │ │ │ ├── razorgenerator.directives
│ │ │ │ ├── GridSystem
│ │ │ │ └── Templates
│ │ │ │ │ ├── container.html
│ │ │ │ │ ├── grid-12.html
│ │ │ │ │ ├── grid-3+9.html
│ │ │ │ │ ├── grid-4+8.html
│ │ │ │ │ ├── grid-6+6.html
│ │ │ │ │ ├── grid-8+4.html
│ │ │ │ │ ├── grid-9+3.html
│ │ │ │ │ ├── grid-3+6+3.html
│ │ │ │ │ ├── grid-4+4+4.html
│ │ │ │ │ ├── grid-3+3+3+3.html
│ │ │ │ │ └── grid-2+3+2+3+2.html
│ │ │ │ └── MVC
│ │ │ │ └── Views
│ │ │ │ ├── SearchResults
│ │ │ │ └── InputValidationError.cshtml
│ │ │ │ ├── Form
│ │ │ │ └── Form.SubmitResultView.cshtml
│ │ │ │ ├── CheckboxesField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── EmailTextField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── DropdownListField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── ParagraphTextField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── MultipleChoiceField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── SectionHeader
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── TextField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── HiddenField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── StyleSheet
│ │ │ │ └── Index.cshtml
│ │ │ │ ├── ContentBlock
│ │ │ │ └── Default.cshtml
│ │ │ │ ├── UnsubscribeForm
│ │ │ │ └── UnsubscribeFormByLink.UnsubscribeMessage.cshtml
│ │ │ │ ├── FlatTaxonomy
│ │ │ │ ├── FlatTaxonomy.SimpleList.cshtml
│ │ │ │ ├── FlatTaxonomy.CloudList.cshtml
│ │ │ │ └── FlatTaxonomy.TagCloud.cshtml
│ │ │ │ ├── EmbedCode
│ │ │ │ └── Index.cshtml
│ │ │ │ ├── HierarchicalTaxonomy
│ │ │ │ └── HierarchicalTaxonomy.CategoriesList.cshtml
│ │ │ │ └── JavaScript
│ │ │ │ └── Index.cshtml
│ │ ├── CustomWidget
│ │ │ └── Default
│ │ │ │ ├── View.Template
│ │ │ │ ├── Model.Template
│ │ │ │ └── templates.json
│ │ ├── IntegrationTests
│ │ │ └── Default
│ │ │ │ ├── IntegrationTestsSettings.json.Template
│ │ │ │ └── templates.json
│ │ ├── GridWidget
│ │ │ └── grid-6+6.Template
│ │ └── Module
│ │ │ └── Default
│ │ │ └── templates.json
│ ├── 15.1
│ │ ├── PageTemplate
│ │ │ └── Test.config.json
│ │ ├── ResourcePackage
│ │ │ └── Bootstrap5
│ │ │ │ ├── assets
│ │ │ │ └── src
│ │ │ │ │ ├── vendors
│ │ │ │ │ └── _index.scss
│ │ │ │ │ ├── sitefinity
│ │ │ │ │ └── sass
│ │ │ │ │ │ └── _index.scss
│ │ │ │ │ └── project
│ │ │ │ │ └── sass
│ │ │ │ │ ├── main.scss
│ │ │ │ │ └── adminapp
│ │ │ │ │ └── editor.scss
│ │ │ │ ├── razorgenerator.directives
│ │ │ │ ├── GridSystem
│ │ │ │ └── Templates
│ │ │ │ │ ├── container.html
│ │ │ │ │ ├── grid-12.html
│ │ │ │ │ ├── grid-3+9.html
│ │ │ │ │ ├── grid-4+8.html
│ │ │ │ │ ├── grid-6+6.html
│ │ │ │ │ ├── grid-8+4.html
│ │ │ │ │ ├── grid-9+3.html
│ │ │ │ │ ├── grid-3+6+3.html
│ │ │ │ │ ├── grid-4+4+4.html
│ │ │ │ │ ├── grid-3+3+3+3.html
│ │ │ │ │ └── grid-2+3+2+3+2.html
│ │ │ │ └── MVC
│ │ │ │ └── Views
│ │ │ │ ├── SearchResults
│ │ │ │ └── InputValidationError.cshtml
│ │ │ │ ├── Form
│ │ │ │ └── Form.SubmitResultView.cshtml
│ │ │ │ ├── CheckboxesField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── EmailTextField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── DropdownListField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── ParagraphTextField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── MultipleChoiceField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── SectionHeader
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── TextField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── HiddenField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── StyleSheet
│ │ │ │ └── Index.cshtml
│ │ │ │ ├── ContentBlock
│ │ │ │ └── Default.cshtml
│ │ │ │ ├── UnsubscribeForm
│ │ │ │ └── UnsubscribeFormByLink.UnsubscribeMessage.cshtml
│ │ │ │ ├── FlatTaxonomy
│ │ │ │ ├── FlatTaxonomy.SimpleList.cshtml
│ │ │ │ ├── FlatTaxonomy.CloudList.cshtml
│ │ │ │ └── FlatTaxonomy.TagCloud.cshtml
│ │ │ │ ├── EmbedCode
│ │ │ │ └── Index.cshtml
│ │ │ │ ├── HierarchicalTaxonomy
│ │ │ │ └── HierarchicalTaxonomy.CategoriesList.cshtml
│ │ │ │ ├── Profile
│ │ │ │ └── ConfirmationEmailSent.ProfileEdit.cshtml
│ │ │ │ └── JavaScript
│ │ │ │ └── Index.cshtml
│ │ ├── CustomWidget
│ │ │ └── Default
│ │ │ │ ├── View.Template
│ │ │ │ ├── Model.Template
│ │ │ │ └── templates.json
│ │ ├── IntegrationTests
│ │ │ └── Default
│ │ │ │ ├── IntegrationTestsSettings.json.Template
│ │ │ │ └── templates.json
│ │ ├── GridWidget
│ │ │ └── grid-6+6.Template
│ │ └── Module
│ │ │ └── Default
│ │ │ └── templates.json
│ ├── 15.2
│ │ ├── PageTemplate
│ │ │ └── Test.config.json
│ │ ├── ResourcePackage
│ │ │ └── Bootstrap5
│ │ │ │ ├── assets
│ │ │ │ └── src
│ │ │ │ │ ├── vendors
│ │ │ │ │ └── _index.scss
│ │ │ │ │ ├── sitefinity
│ │ │ │ │ └── sass
│ │ │ │ │ │ └── _index.scss
│ │ │ │ │ └── project
│ │ │ │ │ └── sass
│ │ │ │ │ ├── main.scss
│ │ │ │ │ └── adminapp
│ │ │ │ │ └── editor.scss
│ │ │ │ ├── razorgenerator.directives
│ │ │ │ ├── GridSystem
│ │ │ │ └── Templates
│ │ │ │ │ ├── container.html
│ │ │ │ │ ├── grid-12.html
│ │ │ │ │ ├── grid-3+9.html
│ │ │ │ │ ├── grid-4+8.html
│ │ │ │ │ ├── grid-6+6.html
│ │ │ │ │ ├── grid-8+4.html
│ │ │ │ │ ├── grid-9+3.html
│ │ │ │ │ ├── grid-3+6+3.html
│ │ │ │ │ ├── grid-4+4+4.html
│ │ │ │ │ ├── grid-3+3+3+3.html
│ │ │ │ │ └── grid-2+3+2+3+2.html
│ │ │ │ └── MVC
│ │ │ │ └── Views
│ │ │ │ ├── SearchResults
│ │ │ │ └── InputValidationError.cshtml
│ │ │ │ ├── Form
│ │ │ │ └── Form.SubmitResultView.cshtml
│ │ │ │ ├── CheckboxesField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── EmailTextField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── DropdownListField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── ParagraphTextField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── MultipleChoiceField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── SectionHeader
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── TextField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── HiddenField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── StyleSheet
│ │ │ │ └── Index.cshtml
│ │ │ │ ├── ContentBlock
│ │ │ │ └── Default.cshtml
│ │ │ │ ├── UnsubscribeForm
│ │ │ │ └── UnsubscribeFormByLink.UnsubscribeMessage.cshtml
│ │ │ │ ├── FlatTaxonomy
│ │ │ │ ├── FlatTaxonomy.SimpleList.cshtml
│ │ │ │ ├── FlatTaxonomy.CloudList.cshtml
│ │ │ │ └── FlatTaxonomy.TagCloud.cshtml
│ │ │ │ ├── EmbedCode
│ │ │ │ └── Index.cshtml
│ │ │ │ ├── HierarchicalTaxonomy
│ │ │ │ └── HierarchicalTaxonomy.CategoriesList.cshtml
│ │ │ │ └── Profile
│ │ │ │ └── ConfirmationEmailSent.ProfileEdit.cshtml
│ │ ├── CustomWidget
│ │ │ └── Default
│ │ │ │ ├── View.Template
│ │ │ │ ├── Model.Template
│ │ │ │ └── templates.json
│ │ ├── IntegrationTests
│ │ │ └── Default
│ │ │ │ ├── IntegrationTestsSettings.json.Template
│ │ │ │ └── templates.json
│ │ ├── GridWidget
│ │ │ └── grid-6+6.Template
│ │ └── Module
│ │ │ └── Default
│ │ │ └── templates.json
│ ├── 15.3
│ │ ├── PageTemplate
│ │ │ └── Test.config.json
│ │ ├── ResourcePackage
│ │ │ └── Bootstrap5
│ │ │ │ ├── assets
│ │ │ │ └── src
│ │ │ │ │ ├── vendors
│ │ │ │ │ └── _index.scss
│ │ │ │ │ ├── sitefinity
│ │ │ │ │ └── sass
│ │ │ │ │ │ └── _index.scss
│ │ │ │ │ └── project
│ │ │ │ │ └── sass
│ │ │ │ │ ├── main.scss
│ │ │ │ │ └── adminapp
│ │ │ │ │ └── editor.scss
│ │ │ │ ├── razorgenerator.directives
│ │ │ │ ├── GridSystem
│ │ │ │ └── Templates
│ │ │ │ │ ├── container.html
│ │ │ │ │ ├── grid-12.html
│ │ │ │ │ ├── grid-3+9.html
│ │ │ │ │ ├── grid-4+8.html
│ │ │ │ │ ├── grid-6+6.html
│ │ │ │ │ ├── grid-8+4.html
│ │ │ │ │ ├── grid-9+3.html
│ │ │ │ │ ├── grid-3+6+3.html
│ │ │ │ │ ├── grid-4+4+4.html
│ │ │ │ │ ├── grid-3+3+3+3.html
│ │ │ │ │ └── grid-2+3+2+3+2.html
│ │ │ │ └── MVC
│ │ │ │ └── Views
│ │ │ │ ├── SearchResults
│ │ │ │ └── InputValidationError.cshtml
│ │ │ │ ├── Form
│ │ │ │ └── Form.SubmitResultView.cshtml
│ │ │ │ ├── CheckboxesField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── EmailTextField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── DropdownListField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── ParagraphTextField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── MultipleChoiceField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── SectionHeader
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── TextField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── HiddenField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── StyleSheet
│ │ │ │ └── Index.cshtml
│ │ │ │ ├── ContentBlock
│ │ │ │ └── Default.cshtml
│ │ │ │ ├── UnsubscribeForm
│ │ │ │ └── UnsubscribeFormByLink.UnsubscribeMessage.cshtml
│ │ │ │ ├── FlatTaxonomy
│ │ │ │ ├── FlatTaxonomy.SimpleList.cshtml
│ │ │ │ ├── FlatTaxonomy.CloudList.cshtml
│ │ │ │ └── FlatTaxonomy.TagCloud.cshtml
│ │ │ │ ├── EmbedCode
│ │ │ │ └── Index.cshtml
│ │ │ │ ├── HierarchicalTaxonomy
│ │ │ │ └── HierarchicalTaxonomy.CategoriesList.cshtml
│ │ │ │ └── Profile
│ │ │ │ └── ConfirmationEmailSent.ProfileEdit.cshtml
│ │ ├── CustomWidget
│ │ │ └── Default
│ │ │ │ ├── View.Template
│ │ │ │ ├── Model.Template
│ │ │ │ └── templates.json
│ │ ├── IntegrationTests
│ │ │ └── Default
│ │ │ │ ├── IntegrationTestsSettings.json.Template
│ │ │ │ └── templates.json
│ │ ├── GridWidget
│ │ │ └── grid-6+6.Template
│ │ └── Module
│ │ │ └── Default
│ │ │ └── templates.json
│ ├── 15.4
│ │ ├── PageTemplate
│ │ │ └── Test.config.json
│ │ ├── ResourcePackage
│ │ │ └── Bootstrap5
│ │ │ │ ├── assets
│ │ │ │ └── src
│ │ │ │ │ ├── vendors
│ │ │ │ │ └── _index.scss
│ │ │ │ │ ├── sitefinity
│ │ │ │ │ └── sass
│ │ │ │ │ │ └── _index.scss
│ │ │ │ │ └── project
│ │ │ │ │ └── sass
│ │ │ │ │ ├── main.scss
│ │ │ │ │ └── adminapp
│ │ │ │ │ └── editor.scss
│ │ │ │ ├── razorgenerator.directives
│ │ │ │ ├── GridSystem
│ │ │ │ └── Templates
│ │ │ │ │ ├── container.html
│ │ │ │ │ ├── grid-12.html
│ │ │ │ │ ├── grid-3+9.html
│ │ │ │ │ ├── grid-4+8.html
│ │ │ │ │ ├── grid-6+6.html
│ │ │ │ │ ├── grid-8+4.html
│ │ │ │ │ ├── grid-9+3.html
│ │ │ │ │ ├── grid-3+6+3.html
│ │ │ │ │ ├── grid-4+4+4.html
│ │ │ │ │ ├── grid-3+3+3+3.html
│ │ │ │ │ └── grid-2+3+2+3+2.html
│ │ │ │ └── MVC
│ │ │ │ └── Views
│ │ │ │ ├── SearchResults
│ │ │ │ └── InputValidationError.cshtml
│ │ │ │ ├── Form
│ │ │ │ └── Form.SubmitResultView.cshtml
│ │ │ │ ├── CheckboxesField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── EmailTextField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── DropdownListField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── ParagraphTextField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── MultipleChoiceField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── SectionHeader
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── TextField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── HiddenField
│ │ │ │ └── Read.Default.cshtml
│ │ │ │ ├── StyleSheet
│ │ │ │ └── Index.cshtml
│ │ │ │ ├── ContentBlock
│ │ │ │ └── Default.cshtml
│ │ │ │ ├── UnsubscribeForm
│ │ │ │ └── UnsubscribeFormByLink.UnsubscribeMessage.cshtml
│ │ │ │ ├── FlatTaxonomy
│ │ │ │ ├── FlatTaxonomy.SimpleList.cshtml
│ │ │ │ ├── FlatTaxonomy.CloudList.cshtml
│ │ │ │ └── FlatTaxonomy.TagCloud.cshtml
│ │ │ │ ├── EmbedCode
│ │ │ │ └── Index.cshtml
│ │ │ │ ├── HierarchicalTaxonomy
│ │ │ │ └── HierarchicalTaxonomy.CategoriesList.cshtml
│ │ │ │ └── Profile
│ │ │ │ └── ConfirmationEmailSent.ProfileEdit.cshtml
│ │ ├── CustomWidget
│ │ │ └── Default
│ │ │ │ ├── View.Template
│ │ │ │ ├── Model.Template
│ │ │ │ └── templates.json
│ │ ├── IntegrationTests
│ │ │ └── Default
│ │ │ │ ├── IntegrationTestsSettings.json.Template
│ │ │ │ └── templates.json
│ │ ├── GridWidget
│ │ │ └── grid-6+6.Template
│ │ └── Module
│ │ │ └── Default
│ │ │ └── templates.json
│ └── Sign.Template
├── Enums
│ ├── ProtocolVersion.cs
│ └── ExitCode.cs
├── FileModifierResult.cs
├── VisualStudio
│ ├── IProjectConfigFileEditor.cs
│ ├── Templates
│ │ └── EmptyNetFrameworkWebApp
│ │ │ ├── packages.config
│ │ │ ├── nuget.config
│ │ │ └── .template.config
│ │ │ └── template.json
│ ├── CsProjectFileReference.cs
│ └── ICsProjectFileEditor.cs
├── PackageManagement
│ ├── Contracts
│ │ ├── IVisualStudioWorkerFactory.cs
│ │ ├── INugetProvider.cs
│ │ ├── INuGetDependencyParser.cs
│ │ ├── INuGetCliClient.cs
│ │ ├── IPackagesConfigFileEditor.cs
│ │ ├── IVisualStudioWorker.cs
│ │ ├── IUpgradeConfigGenerator.cs
│ │ └── INuGetApiClient.cs
│ ├── AssemblyReference.cs
│ └── NuGet.Config
├── Model
│ ├── OptionModel.cs
│ ├── PackageXmlDocumentModel.cs
│ ├── PackageSpecificationResponseModel.cs
│ ├── CommandModel.cs
│ ├── InstallNugetPackageOptions.cs
│ ├── FileModel.cs
│ ├── DotnetPackageSearchResponseModel.cs
│ └── DeprecatedPackage.cs
├── IPromptService.cs
├── Exceptions
│ ├── UpgradeException.cs
│ ├── InvalidVersionException.cs
│ └── VisualStudioCommandException.cs
├── Migrations
│ └── Common
│ │ ├── QueryData.cs
│ │ ├── FieldMapping.cs
│ │ ├── Provider.cs
│ │ ├── Condition.cs
│ │ └── QueryItem.cs
├── Services
│ └── Contracts
│ │ ├── IVisualStudioService.cs
│ │ └── ISitefinityConfigService.cs
└── PromptService.cs
├── .travis.yml
└── LICENSE.md
/Sitefinity:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Sitefinity CLI.Tests/UpgradeCommandTests/Mocks/fake.sln:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Sitefinity CLI.Tests/UpgradeCommandTests/Mocks/fakeSln.sln:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Sitefinity CLI.Tests/UpgradeCommandTests/Mocks/fakeSlnx.slnx:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Sitefinity CLI.Tests/SolutionFileEditorTests/Data/WithoutElementsSlnx.template:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/PageTemplate/Test.config.json:
--------------------------------------------------------------------------------
1 | [
2 | "message",
3 | "time",
4 | "age"
5 | ]
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/PageTemplate/Test.config.json:
--------------------------------------------------------------------------------
1 | [
2 | "message",
3 | "time",
4 | "age"
5 | ]
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/PageTemplate/Test.config.json:
--------------------------------------------------------------------------------
1 | [
2 | "message",
3 | "time",
4 | "age"
5 | ]
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/PageTemplate/Test.config.json:
--------------------------------------------------------------------------------
1 | [
2 | "message",
3 | "time",
4 | "age"
5 | ]
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/PageTemplate/Test.config.json:
--------------------------------------------------------------------------------
1 | [
2 | "message",
3 | "time",
4 | "age"
5 | ]
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/PageTemplate/Test.config.json:
--------------------------------------------------------------------------------
1 | [
2 | "message",
3 | "time",
4 | "age"
5 | ]
--------------------------------------------------------------------------------
/Sitefinity CLI.Tests/UpgradeCommandTests/SitefinityPackageManagerTests/Data/NetFrameworkOnlyAssemblies/lib/net35/net35.dll:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Sitefinity CLI.Tests/UpgradeCommandTests/SitefinityPackageManagerTests/Data/NetFrameworkOnlyAssemblies/lib/net45/net45.dll:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Sitefinity CLI.Tests/UpgradeCommandTests/SitefinityPackageManagerTests/Data/NetFrameworkOnlyAssemblies/lib/net48/net48.dll:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Sitefinity CLI.Tests/UpgradeCommandTests/SitefinityPackageManagerTests/Data/NetFrameworkOnlyAssemblies/lib/net461/net461.dll:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Sitefinity CLI.Tests/UpgradeCommandTests/SitefinityPackageManagerTests/Data/NetFrameworkOnlyAssemblies/lib/net471/net471.dll:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Sitefinity CLI.Tests/UpgradeCommandTests/SitefinityPackageManagerTests/Data/NetFrameworkOnlyAssemblies/lib/net472/net472.dll:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/assets/src/vendors/_all.scss:
--------------------------------------------------------------------------------
1 | @import "bootstrap";
2 | @import "magnific-popup";
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/assets/src/vendors/_index.scss:
--------------------------------------------------------------------------------
1 | @import "bootstrap";
2 | @import "fontawesome";
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/assets/src/vendors/_all.scss:
--------------------------------------------------------------------------------
1 | @import "bootstrap";
2 | @import "magnific-popup";
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/assets/src/vendors/_index.scss:
--------------------------------------------------------------------------------
1 | @import "bootstrap";
2 | @import "fontawesome";
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/assets/src/vendors/_index.scss:
--------------------------------------------------------------------------------
1 | @import "bootstrap";
2 | @import "fontawesome";
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/assets/src/vendors/_index.scss:
--------------------------------------------------------------------------------
1 | @import "bootstrap";
2 | @import "fontawesome";
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/assets/src/vendors/_index.scss:
--------------------------------------------------------------------------------
1 | @import "bootstrap";
2 | @import "fontawesome";
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/assets/src/vendors/_index.scss:
--------------------------------------------------------------------------------
1 | @import "bootstrap";
2 | @import "fontawesome";
--------------------------------------------------------------------------------
/Sitefinity CLI.Tests/UpgradeCommandTests/SitefinityPackageManagerTests/Data/NetFrameworkOnlyAssemblies/lib/netstandard2.0/netstandard2.0.dll:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Sitefinity CLI.Tests/UpgradeCommandTests/SitefinityPackageManagerTests/Data/NetStandardOnlyAssemblies/lib/netstandard1.0/netstandard1.0.dll:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Sitefinity CLI.Tests/UpgradeCommandTests/SitefinityPackageManagerTests/Data/NetStandardOnlyAssemblies/lib/netstandard2.0/netstandard2.0.dll:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/utilities/_text.scss:
--------------------------------------------------------------------------------
1 | .u-toe {
2 | @include text-overflow;
3 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/razorgenerator.directives:
--------------------------------------------------------------------------------
1 | RazorVersion:3
2 | Generator:MvcView
3 | GeneratePrettyNames:true
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/razorgenerator.directives:
--------------------------------------------------------------------------------
1 | RazorVersion:3
2 | Generator:MvcView
3 | GeneratePrettyNames:true
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/utilities/_text.scss:
--------------------------------------------------------------------------------
1 | .u-toe {
2 | @include text-overflow;
3 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/razorgenerator.directives:
--------------------------------------------------------------------------------
1 | RazorVersion:3
2 | Generator:MvcView
3 | GeneratePrettyNames:true
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/razorgenerator.directives:
--------------------------------------------------------------------------------
1 | RazorVersion:3
2 | Generator:MvcView
3 | GeneratePrettyNames:true
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/razorgenerator.directives:
--------------------------------------------------------------------------------
1 | RazorVersion:3
2 | Generator:MvcView
3 | GeneratePrettyNames:true
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/razorgenerator.directives:
--------------------------------------------------------------------------------
1 | RazorVersion:3
2 | Generator:MvcView
3 | GeneratePrettyNames:true
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/razorgenerator.directives:
--------------------------------------------------------------------------------
1 | RazorVersion:3
2 | Generator:MvcView
3 | GeneratePrettyNames:true
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/razorgenerator.directives:
--------------------------------------------------------------------------------
1 | RazorVersion:3
2 | Generator:MvcView
3 | GeneratePrettyNames:true
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/assets/src/sitefinity/sass/_index.scss:
--------------------------------------------------------------------------------
1 | // // Search
2 | @import "widgets/searchBox/sf-search-box";
3 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/assets/src/sitefinity/sass/_index.scss:
--------------------------------------------------------------------------------
1 | // // Search
2 | @import "widgets/searchBox/sf-search-box";
3 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/assets/src/sitefinity/sass/_index.scss:
--------------------------------------------------------------------------------
1 | // // Search
2 | @import "widgets/searchBox/sf-search-box";
3 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/assets/src/sitefinity/sass/_index.scss:
--------------------------------------------------------------------------------
1 | // // Search
2 | @import "widgets/searchBox/sf-search-box";
3 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/assets/src/sitefinity/sass/_index.scss:
--------------------------------------------------------------------------------
1 | // // Search
2 | @import "widgets/searchBox/sf-search-box";
3 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/assets/src/sitefinity/sass/_index.scss:
--------------------------------------------------------------------------------
1 | // // Search
2 | @import "widgets/searchBox/sf-search-box";
3 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/widgets/feed/_sf-feed.scss:
--------------------------------------------------------------------------------
1 | .sf-icon-feed {
2 | @extend %mr-1; //.25rem
3 | }
4 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/widgets/feed/_sf-feed.scss:
--------------------------------------------------------------------------------
1 | .sf-icon-feed {
2 | @extend %mr-1; //.25rem
3 | }
4 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/MVC/Views/Form/Form.SubmitResultView.cshtml:
--------------------------------------------------------------------------------
1 |
@Html.Raw(ViewBag.SubmitMessage)
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/widgets/code/_sf-code.scss:
--------------------------------------------------------------------------------
1 | .sf-Code {
2 | pre {
3 | color: $code-color;
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/MVC/Views/Form/Form.SubmitResultView.cshtml:
--------------------------------------------------------------------------------
1 | @Html.Raw(ViewBag.SubmitMessage)
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/widgets/code/_sf-code.scss:
--------------------------------------------------------------------------------
1 | .sf-Code {
2 | pre {
3 | color: $code-color;
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/assets/src/vendors/_magnific-popup.scss:
--------------------------------------------------------------------------------
1 | //Magnific popup
2 |
3 | @import "../../../node_modules/magnific-popup/src/css/main";
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/assets/src/vendors/_magnific-popup.scss:
--------------------------------------------------------------------------------
1 | //Magnific popup
2 |
3 | @import "../../../node_modules/magnific-popup/src/css/main";
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/base/_media.scss:
--------------------------------------------------------------------------------
1 | img,
2 | video {
3 | max-width: 100%;
4 | }
5 |
6 | img {
7 | height: auto;
8 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/widgets/searchResults/_sf-search-results.scss:
--------------------------------------------------------------------------------
1 | .sf-search-results {
2 | @extend %mb-4; //1.5rem
3 | }
4 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/base/_media.scss:
--------------------------------------------------------------------------------
1 | img,
2 | video {
3 | max-width: 100%;
4 | }
5 |
6 | img {
7 | height: auto;
8 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/widgets/searchResults/_sf-search-results.scss:
--------------------------------------------------------------------------------
1 | .sf-search-results {
2 | @extend %mb-4; //1.5rem
3 | }
4 |
--------------------------------------------------------------------------------
/Sitefinity CLI.Tests/SolutionFileEditorTests/Data/WithElementsSlnx.template:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Enums/ProtocolVersion.cs:
--------------------------------------------------------------------------------
1 | namespace Sitefinity_CLI.Enums
2 | {
3 | internal enum ProtocolVersion
4 | {
5 | NuGetAPIV2 = 2,
6 | NuGetAPIV3 = 3
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/CustomWidget/Default/View.Template:
--------------------------------------------------------------------------------
1 | @* {{> sign}} *@
2 |
3 | @model {{projectDefaultNamespace}}.Mvc.Models.{{pascalCaseName}}Model
4 |
5 | @Model.Message
6 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/CustomWidget/Default/View.Template:
--------------------------------------------------------------------------------
1 | @* {{> sign}} *@
2 |
3 | @model {{projectDefaultNamespace}}.Mvc.Models.{{pascalCaseName}}Model
4 |
5 | @Model.Message
6 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/CustomWidget/Default/View.Template:
--------------------------------------------------------------------------------
1 | @* {{> sign}} *@
2 |
3 | @model {{projectDefaultNamespace}}.Mvc.Models.{{pascalCaseName}}Model
4 |
5 | @Model.Message
6 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/CustomWidget/Default/View.Template:
--------------------------------------------------------------------------------
1 | @* {{> sign}} *@
2 |
3 | @model {{projectDefaultNamespace}}.Mvc.Models.{{pascalCaseName}}Model
4 |
5 | @Model.Message
6 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/CustomWidget/Default/View.Template:
--------------------------------------------------------------------------------
1 | @* {{> sign}} *@
2 |
3 | @model {{projectDefaultNamespace}}.Mvc.Models.{{pascalCaseName}}Model
4 |
5 | @Model.Message
6 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/CustomWidget/Default/View.Template:
--------------------------------------------------------------------------------
1 | @* {{> sign}} *@
2 |
3 | @model {{projectDefaultNamespace}}.Mvc.Models.{{pascalCaseName}}Model
4 |
5 | @Model.Message
6 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/GridSystem/Templates/container.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/MVC/Views/SearchResults/InputValidationError.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Search.Mvc.Models.ISearchResultsModel
2 |
3 | @Model.ResultText
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/GridSystem/Templates/container.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/MVC/Views/SearchResults/InputValidationError.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Search.Mvc.Models.ISearchResultsModel
2 |
3 | @Model.ResultText
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/GridSystem/Templates/container.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/MVC/Views/SearchResults/InputValidationError.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Search.Mvc.Models.ISearchResultsModel
2 |
3 | @Model.ResultText
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/GridSystem/Templates/container.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/MVC/Views/SearchResults/InputValidationError.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Search.Mvc.Models.ISearchResultsModel
2 |
3 | @Model.ResultText
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/GridSystem/Templates/container.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/MVC/Views/SearchResults/InputValidationError.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Search.Mvc.Models.ISearchResultsModel
2 |
3 | @Model.ResultText
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/GridSystem/Templates/container.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/MVC/Views/SearchResults/InputValidationError.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Search.Mvc.Models.ISearchResultsModel
2 |
3 | @Model.ResultText
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/GridSystem/Templates/container.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/MVC/Views/SearchResults/InputValidationError.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Search.Mvc.Models.ISearchResultsModel
2 |
3 | @Model.ResultText
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/GridSystem/Templates/container.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/MVC/Views/SearchResults/InputValidationError.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Search.Mvc.Models.ISearchResultsModel
2 |
3 | @Model.ResultText
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/MVC/Views/Form/Form.SubmitResultView.cshtml:
--------------------------------------------------------------------------------
1 | @Html.Raw(ViewBag.SubmitMessage)
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/MVC/Views/Form/Form.SubmitResultView.cshtml:
--------------------------------------------------------------------------------
1 | @Html.Raw(ViewBag.SubmitMessage)
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/MVC/Views/Form/Form.SubmitResultView.cshtml:
--------------------------------------------------------------------------------
1 | @Html.Raw(ViewBag.SubmitMessage)
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/MVC/Views/Form/Form.SubmitResultView.cshtml:
--------------------------------------------------------------------------------
1 | @Html.Raw(ViewBag.SubmitMessage)
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/MVC/Views/Form/Form.SubmitResultView.cshtml:
--------------------------------------------------------------------------------
1 | @Html.Raw(ViewBag.SubmitMessage)
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/MVC/Views/Form/Form.SubmitResultView.cshtml:
--------------------------------------------------------------------------------
1 | @Html.Raw(ViewBag.SubmitMessage)
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/widgets/documentList/_sf-document-list.scss:
--------------------------------------------------------------------------------
1 | .sf-document-list--table {
2 | .sf-title {
3 | @extend %ml-2; //.5rem
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/widgets/documentList/_sf-document-list.scss:
--------------------------------------------------------------------------------
1 | .sf-document-list--table {
2 | .sf-title {
3 | @extend %ml-2; //.5rem
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/assets/src/project/sass/main.scss:
--------------------------------------------------------------------------------
1 | //Vendoers
2 | @import "../../vendors";
3 |
4 | //Sitefinity
5 | @import "../../sitefinity/sass";
6 |
7 | //Import .scss files here
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/assets/src/project/sass/main.scss:
--------------------------------------------------------------------------------
1 | //Vendoers
2 | @import "../../vendors";
3 |
4 | //Sitefinity
5 | @import "../../sitefinity/sass";
6 |
7 | //Import .scss files here
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/assets/src/project/sass/main.scss:
--------------------------------------------------------------------------------
1 | //Vendoers
2 | @import "../../vendors";
3 |
4 | //Sitefinity
5 | @import "../../sitefinity/sass";
6 |
7 | //Import .scss files here
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/assets/src/project/sass/main.scss:
--------------------------------------------------------------------------------
1 | //Vendoers
2 | @import "../../vendors";
3 |
4 | //Sitefinity
5 | @import "../../sitefinity/sass";
6 |
7 | //Import .scss files here
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/assets/src/project/sass/main.scss:
--------------------------------------------------------------------------------
1 | //Vendoers
2 | @import "../../vendors";
3 |
4 | //Sitefinity
5 | @import "../../sitefinity/sass";
6 |
7 | //Import .scss files here
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/assets/src/project/sass/main.scss:
--------------------------------------------------------------------------------
1 | //Vendoers
2 | @import "../../vendors";
3 |
4 | //Sitefinity
5 | @import "../../sitefinity/sass";
6 |
7 | //Import .scss files here
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/widgets/login/_sf-login.scss:
--------------------------------------------------------------------------------
1 | @include create-external-providers-colors($providers);
2 |
3 | .sf-registration-link {
4 | clear: both;
5 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/widgets/login/_sf-login.scss:
--------------------------------------------------------------------------------
1 | @include create-external-providers-colors($providers);
2 |
3 | .sf-registration-link {
4 | clear: both;
5 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/FileModifierResult.cs:
--------------------------------------------------------------------------------
1 | namespace Sitefinity_CLI
2 | {
3 | public class FileModifierResult
4 | {
5 | public bool Success { get; set; }
6 |
7 | public string Message { get; set; }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/assets/src/project/sass/main.scss:
--------------------------------------------------------------------------------
1 | //Bootstrap
2 | @import "../../vendors/all";
3 |
4 | //Sitefinity
5 | @import "../../sitefinity/sass/sitefinity";
6 |
7 | //Import .scss files here
8 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/assets/src/project/sass/main.scss:
--------------------------------------------------------------------------------
1 | //Bootstrap
2 | @import "../../vendors/all";
3 |
4 | //Sitefinity
5 | @import "../../sitefinity/sass/sitefinity";
6 |
7 | //Import .scss files here
8 |
--------------------------------------------------------------------------------
/Sitefinity CLI/VisualStudio/IProjectConfigFileEditor.cs:
--------------------------------------------------------------------------------
1 | namespace Sitefinity_CLI.VisualStudio
2 | {
3 | internal interface IProjectConfigFileEditor
4 | {
5 | string GetProjectConfigPath(string projectLocation);
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/assets/src/project/sass/adminapp/editor.scss:
--------------------------------------------------------------------------------
1 | .sf-editor {
2 | // Import .scss files here that can be later included within the editing area of the new Admin App content editor
3 |
4 | }
5 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/widgets/contentBlock/_sf-content-block.scss:
--------------------------------------------------------------------------------
1 | // Padding for body in the content block iframe
2 | body[contenteditable="true"] {
3 | @extend %p-4; //1.5rem
4 | }
5 |
6 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/assets/src/project/sass/adminapp/editor.scss:
--------------------------------------------------------------------------------
1 | .sf-editor {
2 | // Import .scss files here that can be later included within the editing area of the new Admin App content editor
3 |
4 | }
5 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/assets/src/project/sass/adminapp/editor.scss:
--------------------------------------------------------------------------------
1 | .sf-editor {
2 | // Import .scss files here that can be later included within the editing area of the new Admin App content editor
3 |
4 | }
5 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/widgets/contentBlock/_sf-content-block.scss:
--------------------------------------------------------------------------------
1 | // Padding for body in the content block iframe
2 | body[contenteditable="true"] {
3 | @extend %p-4; //1.5rem
4 | }
5 |
6 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/assets/src/project/sass/adminapp/editor.scss:
--------------------------------------------------------------------------------
1 | .sf-editor {
2 | // Import .scss files here that can be later included within the editing area of the new Admin App content editor
3 |
4 | }
5 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/assets/src/project/sass/adminapp/editor.scss:
--------------------------------------------------------------------------------
1 | .sf-editor {
2 | // Import .scss files here that can be later included within the editing area of the new Admin App content editor
3 |
4 | }
5 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/assets/src/project/sass/adminapp/editor.scss:
--------------------------------------------------------------------------------
1 | .sf-editor {
2 | // Import .scss files here that can be later included within the editing area of the new Admin App content editor
3 |
4 | }
5 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/assets/src/project/sass/adminapp/editor.scss:
--------------------------------------------------------------------------------
1 | .sf-editor {
2 | // Import .scss files here that can be later included within the editing area of the new Admin App content editor
3 |
4 | }
5 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/assets/src/project/sass/adminapp/editor.scss:
--------------------------------------------------------------------------------
1 | .sf-editor {
2 | // Import .scss files here that can be later included within the editing area of the new Admin App content editor
3 |
4 | }
5 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/GridSystem/Templates/grid-12.html:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-12.html:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/GridSystem/Templates/grid-12.html:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-12.html:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-12.html:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-12.html:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-12.html:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-12.html:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/Sitefinity CLI/VisualStudio/Templates/EmptyNetFrameworkWebApp/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/Sitefinity CLI/PackageManagement/Contracts/IVisualStudioWorkerFactory.cs:
--------------------------------------------------------------------------------
1 | namespace Sitefinity_CLI.PackageManagement.Contracts
2 | {
3 | public interface IVisualStudioWorkerFactory
4 | {
5 | IVisualStudioWorker CreateVisualStudioWorker();
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/base/_list.scss:
--------------------------------------------------------------------------------
1 | @if $has-rtl-support {
2 |
3 | @include rtl-cultures {
4 |
5 | .list-unstyled,
6 | .list-inline {
7 | @extend %pr-0; //0
8 | }
9 | }
10 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/base/_list.scss:
--------------------------------------------------------------------------------
1 | @if $has-rtl-support {
2 |
3 | @include rtl-cultures {
4 |
5 | .list-unstyled,
6 | .list-inline {
7 | @extend %pr-0; //0
8 | }
9 | }
10 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/VisualStudio/CsProjectFileReference.cs:
--------------------------------------------------------------------------------
1 | namespace Sitefinity_CLI.VisualStudio
2 | {
3 | public class CsProjectFileReference
4 | {
5 | public string Include { get; set; }
6 |
7 | public string HintPath { get; set; }
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: csharp
2 |
3 | solution: 'Sitefinity CLI.sln'
4 |
5 | mono: none
6 |
7 | dotnet: 2.0.0
8 |
9 | script:
10 | - dotnet restore
11 | - dotnet publish -c release -r ubuntu.14.04-x64
12 | - dotnet test './Sitefinity CLI.Tests/Sitefinity CLI.Tests.csproj'
--------------------------------------------------------------------------------
/Sitefinity CLI/Model/OptionModel.cs:
--------------------------------------------------------------------------------
1 | namespace Sitefinity_CLI.Model
2 | {
3 | public class OptionModel
4 | {
5 | public string Title { get; set; }
6 |
7 | public string Name { get; set; }
8 |
9 | public string DefaultValue { get; set; }
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/Sign.Template:
--------------------------------------------------------------------------------
1 | ------------------------------------------------------------------------------
2 |
3 | This file was generated by {{toolName}} v{{version}}
4 |
5 | ------------------------------------------------------------------------------
--------------------------------------------------------------------------------
/Sitefinity CLI/IPromptService.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Text;
4 |
5 | namespace Sitefinity_CLI
6 | {
7 | internal interface IPromptService
8 | {
9 | bool PromptYesNo(string message, bool defaultAnswer = false);
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Enums/ExitCode.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Text;
4 |
5 | namespace Sitefinity_CLI.Enums
6 | {
7 | public enum ExitCode
8 | {
9 | OK = 0,
10 | GeneralError = 1,
11 | InsufficientPermissions = 2
12 | }
13 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Exceptions/UpgradeException.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace Sitefinity_CLI.Exceptions
4 | {
5 | public class UpgradeException : ApplicationException
6 | {
7 | public UpgradeException(string message) : base(message)
8 | {
9 | }
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/tools/_bootstrap-mixins.scss:
--------------------------------------------------------------------------------
1 | // Text overflow
2 | // Requires inline-block or block for proper styling
3 |
4 | @mixin text-overflow() {
5 | overflow: hidden;
6 | text-overflow: ellipsis;
7 | white-space: nowrap;
8 | }
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/tools/_bootstrap-mixins.scss:
--------------------------------------------------------------------------------
1 | // Text overflow
2 | // Requires inline-block or block for proper styling
3 |
4 | @mixin text-overflow() {
5 | overflow: hidden;
6 | text-overflow: ellipsis;
7 | white-space: nowrap;
8 | }
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/VisualStudio/Templates/EmptyNetFrameworkWebApp/nuget.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/CustomWidget/Default/Model.Template:
--------------------------------------------------------------------------------
1 | /* {{> sign}} */
2 |
3 | using System.Web.Mvc;
4 | using Telerik.Sitefinity.Mvc;
5 |
6 | namespace {{projectDefaultNamespace}}.Mvc.Models
7 | {
8 | public class {{pascalCaseName}}Model
9 | {
10 | public string Message { get; set; }
11 | }
12 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/widgets/navigation/_sf-stacked.scss:
--------------------------------------------------------------------------------
1 | .nav-stacked {
2 | flex-direction: column;
3 | }
4 |
5 | @if $has-rtl-support {
6 |
7 | @include rtl-cultures {
8 |
9 | .nav-stacked>li {
10 | float: none;
11 | }
12 | }
13 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/CustomWidget/Default/Model.Template:
--------------------------------------------------------------------------------
1 | /* {{> sign}} */
2 |
3 | using System.Web.Mvc;
4 | using Telerik.Sitefinity.Mvc;
5 |
6 | namespace {{projectDefaultNamespace}}.Mvc.Models
7 | {
8 | public class {{pascalCaseName}}Model
9 | {
10 | public string Message { get; set; }
11 | }
12 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/widgets/navigation/_sf-stacked.scss:
--------------------------------------------------------------------------------
1 | .nav-stacked {
2 | flex-direction: column;
3 | }
4 |
5 | @if $has-rtl-support {
6 |
7 | @include rtl-cultures {
8 |
9 | .nav-stacked>li {
10 | float: none;
11 | }
12 | }
13 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/CustomWidget/Default/Model.Template:
--------------------------------------------------------------------------------
1 | /* {{> sign}} */
2 |
3 | using System.Web.Mvc;
4 | using Telerik.Sitefinity.Mvc;
5 |
6 | namespace {{projectDefaultNamespace}}.Mvc.Models
7 | {
8 | public class {{pascalCaseName}}Model
9 | {
10 | public string Message { get; set; }
11 | }
12 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/CustomWidget/Default/Model.Template:
--------------------------------------------------------------------------------
1 | /* {{> sign}} */
2 |
3 | using System.Web.Mvc;
4 | using Telerik.Sitefinity.Mvc;
5 |
6 | namespace {{projectDefaultNamespace}}.Mvc.Models
7 | {
8 | public class {{pascalCaseName}}Model
9 | {
10 | public string Message { get; set; }
11 | }
12 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/CustomWidget/Default/Model.Template:
--------------------------------------------------------------------------------
1 | /* {{> sign}} */
2 |
3 | using System.Web.Mvc;
4 | using Telerik.Sitefinity.Mvc;
5 |
6 | namespace {{projectDefaultNamespace}}.Mvc.Models
7 | {
8 | public class {{pascalCaseName}}Model
9 | {
10 | public string Message { get; set; }
11 | }
12 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/CustomWidget/Default/Model.Template:
--------------------------------------------------------------------------------
1 | /* {{> sign}} */
2 |
3 | using System.Web.Mvc;
4 | using Telerik.Sitefinity.Mvc;
5 |
6 | namespace {{projectDefaultNamespace}}.Mvc.Models
7 | {
8 | public class {{pascalCaseName}}Model
9 | {
10 | public string Message { get; set; }
11 | }
12 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Exceptions/InvalidVersionException.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace Sitefinity_CLI.Exceptions
4 | {
5 | internal class InvalidVersionException : ApplicationException
6 | {
7 | public InvalidVersionException(string message) : base(message)
8 | {
9 | }
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/IntegrationTests/Default/IntegrationTestsSettings.json.Template:
--------------------------------------------------------------------------------
1 | {
2 | "SitefinityUrl": "http://localhost",
3 | "SitefinityClientId": "sftestrunner",
4 | "SitefinityClientSecret": "secret",
5 | "Username": "admin@test.test",
6 | "Password": "admin!23",
7 | "TestExecutionTimeout": "00:05:00"
8 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/IntegrationTests/Default/IntegrationTestsSettings.json.Template:
--------------------------------------------------------------------------------
1 | {
2 | "SitefinityUrl": "http://localhost",
3 | "SitefinityClientId": "sftestrunner",
4 | "SitefinityClientSecret": "secret",
5 | "Username": "admin@test.test",
6 | "Password": "admin!23",
7 | "TestExecutionTimeout": "00:05:00"
8 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/IntegrationTests/Default/IntegrationTestsSettings.json.Template:
--------------------------------------------------------------------------------
1 | {
2 | "SitefinityUrl": "http://localhost",
3 | "SitefinityClientId": "sftestrunner",
4 | "SitefinityClientSecret": "secret",
5 | "Username": "admin@test.test",
6 | "Password": "admin!23",
7 | "TestExecutionTimeout": "00:05:00"
8 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/IntegrationTests/Default/IntegrationTestsSettings.json.Template:
--------------------------------------------------------------------------------
1 | {
2 | "SitefinityUrl": "http://localhost",
3 | "SitefinityClientId": "sftestrunner",
4 | "SitefinityClientSecret": "secret",
5 | "Username": "admin@test.test",
6 | "Password": "admin!23",
7 | "TestExecutionTimeout": "00:05:00"
8 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/IntegrationTests/Default/IntegrationTestsSettings.json.Template:
--------------------------------------------------------------------------------
1 | {
2 | "SitefinityUrl": "http://localhost",
3 | "SitefinityClientId": "sftestrunner",
4 | "SitefinityClientSecret": "secret",
5 | "Username": "admin@test.test",
6 | "Password": "admin!23",
7 | "TestExecutionTimeout": "00:05:00"
8 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/IntegrationTests/Default/IntegrationTestsSettings.json.Template:
--------------------------------------------------------------------------------
1 | {
2 | "SitefinityUrl": "http://localhost",
3 | "SitefinityClientId": "sftestrunner",
4 | "SitefinityClientSecret": "secret",
5 | "Username": "admin@test.test",
6 | "Password": "admin!23",
7 | "TestExecutionTimeout": "00:05:00"
8 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/widgets/fileField/_sf-file-field.scss:
--------------------------------------------------------------------------------
1 | .sf-FileField .sf-icon-remove {
2 | display: inline-block;
3 | cursor: pointer;
4 | fill: $icon-remove-button-color;
5 | }
6 |
7 | input[type=file].sf-FileField-input {
8 | display: inline-block;
9 | }
10 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/widgets/fileField/_sf-file-field.scss:
--------------------------------------------------------------------------------
1 | .sf-FileField .sf-icon-remove {
2 | display: inline-block;
3 | cursor: pointer;
4 | fill: $icon-remove-button-color;
5 | }
6 |
7 | input[type=file].sf-FileField-input {
8 | display: inline-block;
9 | }
10 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Exceptions/VisualStudioCommandException.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace Sitefinity_CLI.Exceptions
4 | {
5 | public class VisualStudioCommandException : ApplicationException
6 | {
7 | public VisualStudioCommandException(string message) : base(message)
8 | {
9 | }
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/base/_pre.scss:
--------------------------------------------------------------------------------
1 |
2 |
3 | pre {
4 | @extend %p-0; //0
5 |
6 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
7 | font-size: $pre-font-size;
8 | background: $pre-background;
9 | border: $pre-border-width;
10 | }
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/base/_pre.scss:
--------------------------------------------------------------------------------
1 |
2 |
3 | pre {
4 | @extend %p-0; //0
5 |
6 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
7 | font-size: $pre-font-size;
8 | background: $pre-background;
9 | border: $pre-border-width;
10 | }
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Model/PackageXmlDocumentModel.cs:
--------------------------------------------------------------------------------
1 | using Sitefinity_CLI.Enums;
2 | using System.Xml.Linq;
3 |
4 | namespace Sitefinity_CLI.Model
5 | {
6 | internal class PackageXmlDocumentModel
7 | {
8 | internal XDocument XDocumentData { get; set; }
9 | internal ProtocolVersion ProtoVersion { get; set; }
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/MVC/Views/StyleSheet/Index.cshtml:
--------------------------------------------------------------------------------
1 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
2 |
3 |
4 |
5 | @ViewBag.DesignModeContent
6 | @if(!ViewBag.HasDescription)
7 | {
8 | @Html.Resource("IncludedInHead");
9 | }
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/base/_rtl.scss:
--------------------------------------------------------------------------------
1 | @if $has-rtl-support {
2 |
3 | @include rtl-cultures {
4 | &:not(.sfPageEditorWrp) {
5 | direction: rtl;
6 |
7 | > body {
8 | text-align: right;
9 | }
10 | }
11 | }
12 |
13 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/MVC/Views/StyleSheet/Index.cshtml:
--------------------------------------------------------------------------------
1 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
2 |
3 |
4 |
5 | @ViewBag.DesignModeContent
6 | @if(!ViewBag.HasDescription)
7 | {
8 | @Html.Resource("IncludedInHead");
9 | }
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/base/_rtl.scss:
--------------------------------------------------------------------------------
1 | @if $has-rtl-support {
2 |
3 | @include rtl-cultures {
4 | &:not(.sfPageEditorWrp) {
5 | direction: rtl;
6 |
7 | > body {
8 | text-align: right;
9 | }
10 | }
11 | }
12 |
13 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/GridWidget/grid-6+6.Template:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/GridWidget/grid-6+6.Template:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/GridWidget/grid-6+6.Template:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/GridWidget/grid-6+6.Template:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/GridWidget/grid-6+6.Template:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/GridWidget/grid-6+6.Template:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Migrations/Common/QueryData.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 |
7 | namespace Progress.Sitefinity.MigrationTool.ConsoleApp.Migrations.Common;
8 | internal class QueryData
9 | {
10 | public QueryItem[] QueryItems { get; set; }
11 | }
12 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/MVC/Views/EmailTextField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.EmailTextField.EmailTextFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/MVC/Views/CheckboxesField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.CheckboxesField.CheckboxesFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/MVC/Views/EmailTextField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.EmailTextField.EmailTextFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/MVC/Views/CheckboxesField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.CheckboxesField.CheckboxesFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/MVC/Views/EmailTextField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.EmailTextField.EmailTextFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/MVC/Views/CheckboxesField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.CheckboxesField.CheckboxesFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/MVC/Views/EmailTextField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.EmailTextField.EmailTextFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/MVC/Views/CheckboxesField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.CheckboxesField.CheckboxesFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/MVC/Views/EmailTextField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.EmailTextField.EmailTextFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/MVC/Views/CheckboxesField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.CheckboxesField.CheckboxesFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/MVC/Views/EmailTextField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.EmailTextField.EmailTextFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/MVC/Views/EmailTextField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.EmailTextField.EmailTextFieldViewModel
2 |
3 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/MVC/Views/EmailTextField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.EmailTextField.EmailTextFieldViewModel
2 |
3 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Services/Contracts/IVisualStudioService.cs:
--------------------------------------------------------------------------------
1 | using Sitefinity_CLI.Model;
2 |
3 | namespace Sitefinity_CLI.Services.Contracts
4 | {
5 | public interface IVisualStudioService
6 | {
7 | void ExecuteVisualStudioUpgrade(UpgradeOptions options);
8 |
9 | void ExecuteNugetInstall(InstallNugetPackageOptions options);
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/GridSystem/Templates/grid-3+9.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/GridSystem/Templates/grid-4+8.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/GridSystem/Templates/grid-6+6.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/GridSystem/Templates/grid-8+4.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/GridSystem/Templates/grid-9+3.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-3+9.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-4+8.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-6+6.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-8+4.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-9+3.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/MVC/Views/CheckboxesField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.MultipleChoiceField.MultipleChoiceFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/MVC/Views/DropdownListField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.DropdownListField.DropdownListFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/MVC/Views/ParagraphTextField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.ParagraphTextField.ParagraphTextFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/GridSystem/Templates/grid-3+9.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/GridSystem/Templates/grid-4+8.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/GridSystem/Templates/grid-6+6.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/GridSystem/Templates/grid-8+4.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/GridSystem/Templates/grid-9+3.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-3+9.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-4+8.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-6+6.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-8+4.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-9+3.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/MVC/Views/DropdownListField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.DropdownListField.DropdownListFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/MVC/Views/ParagraphTextField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.ParagraphTextField.ParagraphTextFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-3+9.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-4+8.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-6+6.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-8+4.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-9+3.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/MVC/Views/DropdownListField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.DropdownListField.DropdownListFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/MVC/Views/ParagraphTextField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.ParagraphTextField.ParagraphTextFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-3+9.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-4+8.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-6+6.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-8+4.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-9+3.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/MVC/Views/DropdownListField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.DropdownListField.DropdownListFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/MVC/Views/ParagraphTextField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.ParagraphTextField.ParagraphTextFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-3+9.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-4+8.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-6+6.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-8+4.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-9+3.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/MVC/Views/DropdownListField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.DropdownListField.DropdownListFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/MVC/Views/ParagraphTextField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.ParagraphTextField.ParagraphTextFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-3+9.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-4+8.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-6+6.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-8+4.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-9+3.html:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/MVC/Views/DropdownListField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.DropdownListField.DropdownListFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/MVC/Views/ParagraphTextField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.ParagraphTextField.ParagraphTextFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/MVC/Views/DropdownListField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.DropdownListField.DropdownListFieldViewModel
2 |
3 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/MVC/Views/ParagraphTextField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.ParagraphTextField.ParagraphTextFieldViewModel
2 |
3 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/MVC/Views/MultipleChoiceField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.MultipleChoiceField.MultipleChoiceFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/MVC/Views/CheckboxesField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.CheckboxesField.CheckboxesFieldViewModel
2 |
3 |
4 |
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/MVC/Views/DropdownListField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.DropdownListField.DropdownListFieldViewModel
2 |
3 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/MVC/Views/ParagraphTextField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.ParagraphTextField.ParagraphTextFieldViewModel
2 |
3 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/MVC/Views/MultipleChoiceField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.MultipleChoiceField.MultipleChoiceFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/MVC/Views/MultipleChoiceField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.MultipleChoiceField.MultipleChoiceFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/MVC/Views/MultipleChoiceField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.MultipleChoiceField.MultipleChoiceFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/MVC/Views/MultipleChoiceField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.MultipleChoiceField.MultipleChoiceFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/MVC/Views/MultipleChoiceField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.MultipleChoiceField.MultipleChoiceFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Model/PackageSpecificationResponseModel.cs:
--------------------------------------------------------------------------------
1 | using Sitefinity_CLI.Enums;
2 | using System.Net.Http;
3 |
4 | namespace Sitefinity_CLI.Model
5 | {
6 | internal class PackageSpecificationResponseModel
7 | {
8 | internal HttpResponseMessage SpecResponse { get; set; }
9 | internal ProtocolVersion ProtoVersion { get; set; }
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/MVC/Views/CheckboxesField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.MultipleChoiceField.MultipleChoiceFieldViewModel
2 |
3 |
4 |
5 |
@Model.Value
6 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/MVC/Views/MultipleChoiceField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.MultipleChoiceField.MultipleChoiceFieldViewModel
2 |
3 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/MVC/Views/MultipleChoiceField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.MultipleChoiceField.MultipleChoiceFieldViewModel
2 |
3 |
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/CustomWidget/Default/templates.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "FilePath": "Controllers\\{0}Controller.cs",
4 | "TemplatePath": "Controller.Template"
5 | },
6 | {
7 | "FilePath": "Models\\{0}Model.cs",
8 | "TemplatePath": "Model.Template"
9 | },
10 | {
11 | "FilePath": "Views\\{0}\\Index.cshtml",
12 | "TemplatePath": "View.Template"
13 | }
14 | ]
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/CustomWidget/Default/templates.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "FilePath": "Controllers\\{0}Controller.cs",
4 | "TemplatePath": "Controller.Template"
5 | },
6 | {
7 | "FilePath": "Models\\{0}Model.cs",
8 | "TemplatePath": "Model.Template"
9 | },
10 | {
11 | "FilePath": "Views\\{0}\\Index.cshtml",
12 | "TemplatePath": "View.Template"
13 | }
14 | ]
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/CustomWidget/Default/templates.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "FilePath": "Controllers\\{0}Controller.cs",
4 | "TemplatePath": "Controller.Template"
5 | },
6 | {
7 | "FilePath": "Models\\{0}Model.cs",
8 | "TemplatePath": "Model.Template"
9 | },
10 | {
11 | "FilePath": "Views\\{0}\\Index.cshtml",
12 | "TemplatePath": "View.Template"
13 | }
14 | ]
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/CustomWidget/Default/templates.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "FilePath": "Controllers\\{0}Controller.cs",
4 | "TemplatePath": "Controller.Template"
5 | },
6 | {
7 | "FilePath": "Models\\{0}Model.cs",
8 | "TemplatePath": "Model.Template"
9 | },
10 | {
11 | "FilePath": "Views\\{0}\\Index.cshtml",
12 | "TemplatePath": "View.Template"
13 | }
14 | ]
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/CustomWidget/Default/templates.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "FilePath": "Controllers\\{0}Controller.cs",
4 | "TemplatePath": "Controller.Template"
5 | },
6 | {
7 | "FilePath": "Models\\{0}Model.cs",
8 | "TemplatePath": "Model.Template"
9 | },
10 | {
11 | "FilePath": "Views\\{0}\\Index.cshtml",
12 | "TemplatePath": "View.Template"
13 | }
14 | ]
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/CustomWidget/Default/templates.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "FilePath": "Controllers\\{0}Controller.cs",
4 | "TemplatePath": "Controller.Template"
5 | },
6 | {
7 | "FilePath": "Models\\{0}Model.cs",
8 | "TemplatePath": "Model.Template"
9 | },
10 | {
11 | "FilePath": "Views\\{0}\\Index.cshtml",
12 | "TemplatePath": "View.Template"
13 | }
14 | ]
--------------------------------------------------------------------------------
/Sitefinity CLI/Model/CommandModel.cs:
--------------------------------------------------------------------------------
1 | using System.Collections.Generic;
2 |
3 | namespace Sitefinity_CLI.Model
4 | {
5 | public class CommandModel
6 | {
7 | public string Title { get; set; }
8 |
9 | public string Name { get; set; }
10 |
11 | public List Args { get; set; }
12 |
13 | public List Options { get; set; }
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/Sitefinity CLI/PackageManagement/Contracts/INugetProvider.cs:
--------------------------------------------------------------------------------
1 | using NuGet.Configuration;
2 | using System.Net.Http;
3 | using System.Threading.Tasks;
4 |
5 | namespace Sitefinity_CLI.PackageManagement.Contracts
6 | {
7 | internal interface INugetProvider
8 | {
9 | Task GetPackageSpecification(string id, string version, PackageSource nugetSource);
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Migrations/Common/FieldMapping.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 |
7 | namespace Progress.Sitefinity.MigrationTool.ConsoleApp.Migrations.Common;
8 | internal class FieldMapping
9 | {
10 | public string FriendlyName { get; set; }
11 |
12 | public string Name { get; set; }
13 | }
14 |
--------------------------------------------------------------------------------
/Sitefinity CLI/PackageManagement/AssemblyReference.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace Sitefinity_CLI.PackageManagement
4 | {
5 | internal class AssemblyReference
6 | {
7 | public string Name { get; set; }
8 |
9 | public string FullName { get; set; }
10 |
11 | public Version Version { get; set; }
12 |
13 | public string HintPath { get; set; }
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/MVC/Views/SectionHeader/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.SectionHeader.SectionHeaderViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Forms.Mvc.Helpers;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 |
6 |
7 | @Html.HtmlSanitize((string)Model.Text)
8 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/MVC/Views/SectionHeader/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.SectionHeader.SectionHeaderViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Forms.Mvc.Helpers;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 |
6 |
7 | @Html.HtmlSanitize((string)Model.Text)
8 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/MVC/Views/SectionHeader/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.SectionHeader.SectionHeaderViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Forms.Mvc.Helpers;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 |
6 |
7 | @Html.HtmlSanitize((string)Model.Text)
8 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/MVC/Views/SectionHeader/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.SectionHeader.SectionHeaderViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Forms.Mvc.Helpers;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 |
6 |
7 | @Html.HtmlSanitize((string)Model.Text)
8 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/MVC/Views/SectionHeader/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.SectionHeader.SectionHeaderViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Forms.Mvc.Helpers;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 |
6 |
7 | @Html.HtmlSanitize((string)Model.Text)
8 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/MVC/Views/SectionHeader/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.SectionHeader.SectionHeaderViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Forms.Mvc.Helpers;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 |
6 |
7 | @Html.HtmlSanitize((string)Model.Text)
8 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/MVC/Views/SectionHeader/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.SectionHeader.SectionHeaderViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Forms.Mvc.Helpers;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 |
6 |
7 | @Html.HtmlSanitize((string)Model.Text)
8 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/MVC/Views/SectionHeader/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.SectionHeader.SectionHeaderViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Forms.Mvc.Helpers;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 |
6 |
7 | @Html.HtmlSanitize((string)Model.Text)
8 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/MVC/Views/TextField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.TextField.TextFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/MVC/Views/TextField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.TextField.TextFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/MVC/Views/TextField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.TextField.TextFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/MVC/Views/TextField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.TextField.TextFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/MVC/Views/TextField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.TextField.TextFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/MVC/Views/TextField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.TextField.TextFieldViewModel
2 |
3 |
4 |
@Model.MetaField.Title
5 |
@Model.Value
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/MVC/Views/HiddenField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.HiddenField.HiddenFieldViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Forms.Mvc.Helpers;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 |
6 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/MVC/Views/TextField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.TextField.TextFieldViewModel
2 |
3 |
8 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/MVC/Views/HiddenField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.HiddenField.HiddenFieldViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Forms.Mvc.Helpers;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 |
6 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/MVC/Views/HiddenField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.HiddenField.HiddenFieldViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Forms.Mvc.Helpers;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 |
6 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/MVC/Views/TextField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.TextField.TextFieldViewModel
2 |
3 |
8 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/MVC/Views/HiddenField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.HiddenField.HiddenFieldViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Forms.Mvc.Helpers;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 |
6 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/MVC/Views/HiddenField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.HiddenField.HiddenFieldViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Forms.Mvc.Helpers;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 |
6 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/MVC/Views/HiddenField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.HiddenField.HiddenFieldViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Forms.Mvc.Helpers;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 |
6 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/MVC/Views/HiddenField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.HiddenField.HiddenFieldViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Forms.Mvc.Helpers;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 |
6 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/MVC/Views/HiddenField/Read.Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Forms.Mvc.Models.Fields.HiddenField.HiddenFieldViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Forms.Mvc.Helpers;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 |
6 |
--------------------------------------------------------------------------------
/Sitefinity CLI.Tests/UpgradeCommandTests/Mocks/PromptServiceMock.cs:
--------------------------------------------------------------------------------
1 | using Sitefinity_CLI;
2 |
3 | namespace Sitefinity_CLI.Tests.UpgradeCommandTests.Mocks
4 | {
5 | internal class PromptServiceMock : IPromptService
6 | {
7 | public bool PromptYesNo(string message, bool defaultAnswer = false)
8 | {
9 | return Answer;
10 | }
11 |
12 | public bool Answer { get; set; }
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/widgets/taxonomies/_sf-tags.scss:
--------------------------------------------------------------------------------
1 | //Arrays with
2 | $names: "1", "2", "3", "4", "5", "6";
3 | $sizes: $tags-size1-font-size, $tags-size2-font-size, $tags-size3-font-size, $tags-size4-font-size, $tags-size5-font-size, $tags-size6-font-size;
4 | $class: "sf-Tags-size";
5 |
6 | //Creating tag classes
7 |
8 | @include create-taxa-size-class($names, $sizes, $class);
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/widgets/taxonomies/_sf-tags.scss:
--------------------------------------------------------------------------------
1 | //Arrays with
2 | $names: "1", "2", "3", "4", "5", "6";
3 | $sizes: $tags-size1-font-size, $tags-size2-font-size, $tags-size3-font-size, $tags-size4-font-size, $tags-size5-font-size, $tags-size6-font-size;
4 | $class: "sf-Tags-size";
5 |
6 | //Creating tag classes
7 |
8 | @include create-taxa-size-class($names, $sizes, $class);
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Migrations/Common/Provider.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 |
7 | namespace Progress.Sitefinity.MigrationTool.ConsoleApp.Migrations.Common;
8 | internal class Provider
9 | {
10 | public string Name { get; set; }
11 |
12 | public string Title { get; set; }
13 |
14 | public bool IsDefault { get; set; }
15 | }
16 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Model/InstallNugetPackageOptions.cs:
--------------------------------------------------------------------------------
1 | using System.Collections.Generic;
2 |
3 | namespace Sitefinity_CLI.Model
4 | {
5 | public class InstallNugetPackageOptions
6 | {
7 | public string SolutionPath { get; set; }
8 |
9 | public string Version { get; set; }
10 |
11 | public string PackageName { get; set; }
12 |
13 | public ICollection ProjectNames { get; set; }
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Services/Contracts/ISitefinityConfigService.cs:
--------------------------------------------------------------------------------
1 | using System.Collections.Generic;
2 |
3 | namespace Sitefinity_CLI.Services.Contracts
4 | {
5 | public interface ISitefinityConfigService
6 | {
7 | void RestoreConfigurationValues(IDictionary configsWithoutSitefinity);
8 |
9 | IDictionary GetConfigurtaionsForProjectsWithoutSitefinity(string solutionPath);
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Migrations/Common/Condition.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 |
7 | namespace Progress.Sitefinity.MigrationTool.ConsoleApp.Migrations.Common;
8 | internal class Condition
9 | {
10 | public string FieldName { get; set; }
11 |
12 | public string FieldType { get; set; }
13 |
14 | public string Operator { get; set; }
15 | }
16 |
--------------------------------------------------------------------------------
/Sitefinity CLI/PromptService.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Text;
4 | using McMaster.Extensions.CommandLineUtils;
5 |
6 | namespace Sitefinity_CLI
7 | {
8 | internal class PromptService : IPromptService
9 | {
10 | public bool PromptYesNo(string message, bool defaultAnswer = false)
11 | {
12 | return Prompt.GetYesNo(message, defaultAnswer);
13 | }
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/MVC/Views/StyleSheet/Index.cshtml:
--------------------------------------------------------------------------------
1 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
2 |
3 | @if (!string.IsNullOrEmpty(ViewBag.DesignModeContent))
4 | {
5 |
6 |
@ViewBag.DesignModeContent
7 |
8 | }
9 | @if(!ViewBag.HasDescription)
10 | {
11 |
12 |
@Html.Resource("IncludedInHead")
13 |
14 | }
15 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/MVC/Views/StyleSheet/Index.cshtml:
--------------------------------------------------------------------------------
1 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
2 |
3 | @if (!string.IsNullOrEmpty(ViewBag.DesignModeContent))
4 | {
5 |
6 |
@ViewBag.DesignModeContent
7 |
8 | }
9 | @if(!ViewBag.HasDescription)
10 | {
11 |
12 |
@Html.Resource("IncludedInHead")
13 |
14 | }
15 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/MVC/Views/StyleSheet/Index.cshtml:
--------------------------------------------------------------------------------
1 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
2 |
3 | @if (!string.IsNullOrEmpty(ViewBag.DesignModeContent))
4 | {
5 |
6 |
@ViewBag.DesignModeContent
7 |
8 | }
9 | @if(!ViewBag.HasDescription)
10 | {
11 |
12 |
@Html.Resource("IncludedInHead")
13 |
14 | }
15 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/MVC/Views/StyleSheet/Index.cshtml:
--------------------------------------------------------------------------------
1 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
2 |
3 | @if (!string.IsNullOrEmpty(ViewBag.DesignModeContent))
4 | {
5 |
6 |
@ViewBag.DesignModeContent
7 |
8 | }
9 | @if(!ViewBag.HasDescription)
10 | {
11 |
12 |
@Html.Resource("IncludedInHead")
13 |
14 | }
15 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/MVC/Views/StyleSheet/Index.cshtml:
--------------------------------------------------------------------------------
1 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
2 |
3 | @if (!string.IsNullOrEmpty(ViewBag.DesignModeContent))
4 | {
5 |
6 |
@ViewBag.DesignModeContent
7 |
8 | }
9 | @if(!ViewBag.HasDescription)
10 | {
11 |
12 |
@Html.Resource("IncludedInHead")
13 |
14 | }
15 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/MVC/Views/StyleSheet/Index.cshtml:
--------------------------------------------------------------------------------
1 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
2 |
3 | @if (!string.IsNullOrEmpty(ViewBag.DesignModeContent))
4 | {
5 |
6 |
@ViewBag.DesignModeContent
7 |
8 | }
9 | @if(!ViewBag.HasDescription)
10 | {
11 |
12 |
@Html.Resource("IncludedInHead")
13 |
14 | }
15 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/Module/Default/templates.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "FilePath": "Properties\\AssemblyInfo.cs",
4 | "TemplatePath": "AssemblyInfo.Template"
5 | },
6 | {
7 | "FilePath": "{0}.csproj",
8 | "TemplatePath": "csproj.Template"
9 | },
10 | {
11 | "FilePath": "{0}Module.cs",
12 | "TemplatePath": "Module.Template"
13 | },
14 | {
15 | "FilePath": "{0}Config.cs",
16 | "TemplatePath": "ModuleConfig.Template"
17 | }
18 | ]
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/Module/Default/templates.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "FilePath": "Properties\\AssemblyInfo.cs",
4 | "TemplatePath": "AssemblyInfo.Template"
5 | },
6 | {
7 | "FilePath": "{0}.csproj",
8 | "TemplatePath": "csproj.Template"
9 | },
10 | {
11 | "FilePath": "{0}Module.cs",
12 | "TemplatePath": "Module.Template"
13 | },
14 | {
15 | "FilePath": "{0}Config.cs",
16 | "TemplatePath": "ModuleConfig.Template"
17 | }
18 | ]
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/Module/Default/templates.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "FilePath": "Properties\\AssemblyInfo.cs",
4 | "TemplatePath": "AssemblyInfo.Template"
5 | },
6 | {
7 | "FilePath": "{0}.csproj",
8 | "TemplatePath": "csproj.Template"
9 | },
10 | {
11 | "FilePath": "{0}Module.cs",
12 | "TemplatePath": "Module.Template"
13 | },
14 | {
15 | "FilePath": "{0}Config.cs",
16 | "TemplatePath": "ModuleConfig.Template"
17 | }
18 | ]
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/Module/Default/templates.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "FilePath": "Properties\\AssemblyInfo.cs",
4 | "TemplatePath": "AssemblyInfo.Template"
5 | },
6 | {
7 | "FilePath": "{0}.csproj",
8 | "TemplatePath": "csproj.Template"
9 | },
10 | {
11 | "FilePath": "{0}Module.cs",
12 | "TemplatePath": "Module.Template"
13 | },
14 | {
15 | "FilePath": "{0}Config.cs",
16 | "TemplatePath": "ModuleConfig.Template"
17 | }
18 | ]
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/Module/Default/templates.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "FilePath": "Properties\\AssemblyInfo.cs",
4 | "TemplatePath": "AssemblyInfo.Template"
5 | },
6 | {
7 | "FilePath": "{0}.csproj",
8 | "TemplatePath": "csproj.Template"
9 | },
10 | {
11 | "FilePath": "{0}Module.cs",
12 | "TemplatePath": "Module.Template"
13 | },
14 | {
15 | "FilePath": "{0}Config.cs",
16 | "TemplatePath": "ModuleConfig.Template"
17 | }
18 | ]
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/Module/Default/templates.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "FilePath": "Properties\\AssemblyInfo.cs",
4 | "TemplatePath": "AssemblyInfo.Template"
5 | },
6 | {
7 | "FilePath": "{0}.csproj",
8 | "TemplatePath": "csproj.Template"
9 | },
10 | {
11 | "FilePath": "{0}Module.cs",
12 | "TemplatePath": "Module.Template"
13 | },
14 | {
15 | "FilePath": "{0}Config.cs",
16 | "TemplatePath": "ModuleConfig.Template"
17 | }
18 | ]
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/MVC/Views/ContentBlock/Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.ContentBlock.Mvc.Models.IContentBlockModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 |
5 |
6 |
@Html.HtmlSanitize(Model.Content)
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/MVC/Views/ContentBlock/Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.ContentBlock.Mvc.Models.IContentBlockModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 |
5 |
6 |
@Html.HtmlSanitize(Model.Content)
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/MVC/Views/ContentBlock/Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.ContentBlock.Mvc.Models.IContentBlockModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 |
5 |
6 |
@Html.HtmlSanitize(Model.Content)
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/MVC/Views/ContentBlock/Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.ContentBlock.Mvc.Models.IContentBlockModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 |
5 |
6 |
@Html.HtmlSanitize(Model.Content)
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/MVC/Views/ContentBlock/Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.ContentBlock.Mvc.Models.IContentBlockModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 |
5 |
6 |
@Html.HtmlSanitize(Model.Content)
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/MVC/Views/ContentBlock/Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.ContentBlock.Mvc.Models.IContentBlockModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 |
5 |
6 |
@Html.HtmlSanitize(Model.Content)
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/MVC/Views/ContentBlock/Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.ContentBlock.Mvc.Models.IContentBlockModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 |
5 |
6 |
@Html.HtmlSanitize(Model.Content)
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/MVC/Views/ContentBlock/Default.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.ContentBlock.Mvc.Models.IContentBlockModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 |
5 |
6 |
@Html.HtmlSanitize(Model.Content)
7 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/GridSystem/Templates/grid-3+6+3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/GridSystem/Templates/grid-4+4+4.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-3+6+3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-4+4+4.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/GridSystem/Templates/grid-3+6+3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/GridSystem/Templates/grid-4+4+4.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-3+6+3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-4+4+4.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-3+6+3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-4+4+4.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-3+6+3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-4+4+4.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-3+6+3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-4+4+4.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-3+6+3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-4+4+4.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Sitefinity CLI/VisualStudio/Templates/EmptyNetFrameworkWebApp/.template.config/template.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "http://json.schemastore.org/template",
3 | "author": "Me",
4 | "classifications": [ "Web" ],
5 | "identity": "Empty .NET Framework Web App",
6 | "name": "Empty .NET Framework Web App",
7 | "shortName": "netfwebapp",
8 | "sourceName":"EmptyNetFrameworkWebApp",
9 | "tags": {
10 | "language": "C#",
11 | "type": "project"
12 | }
13 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/tools/_placeholder-selectors.scss:
--------------------------------------------------------------------------------
1 | %icon-font {
2 | font-family: $icon-font-family;
3 | font-style: $icon-font-style;
4 | font-variant: $icon-font-variant;
5 | font-size: inherit;
6 | text-rendering: auto;
7 | -webkit-font-smoothing: antialiased;
8 | -moz-osx-font-smoothing: grayscale;
9 | }
10 |
11 | %icon-font-solid {
12 | @extend %icon-font;
13 |
14 | font-weight: $icon-font-weight-solid;
15 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/tools/_placeholder-selectors.scss:
--------------------------------------------------------------------------------
1 | %icon-font {
2 | font-family: $icon-font-family;
3 | font-style: $icon-font-style;
4 | font-variant: $icon-font-variant;
5 | font-size: inherit;
6 | text-rendering: auto;
7 | -webkit-font-smoothing: antialiased;
8 | -moz-osx-font-smoothing: grayscale;
9 | }
10 |
11 | %icon-font-solid {
12 | @extend %icon-font;
13 |
14 | font-weight: $icon-font-weight-solid;
15 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/PackageManagement/Contracts/INuGetDependencyParser.cs:
--------------------------------------------------------------------------------
1 | using Sitefinity_CLI.Model;
2 | using Sitefinity_CLI.PackageManagement.Implementations;
3 | using System.Collections.Generic;
4 | using System.Text.RegularExpressions;
5 |
6 | namespace Sitefinity_CLI.PackageManagement.Contracts
7 | {
8 | interface INuGetDependencyParser
9 | {
10 | public List ParseDependencies(PackageXmlDocumentModel packageXmlDoc, NuGetPackage nuGetPackage, Regex supportedFrameworksRegex);
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/Sitefinity CLI.Tests/UpgradeCommandTests/Mocks/VisualStudioServiceMock.cs:
--------------------------------------------------------------------------------
1 | using Sitefinity_CLI.Model;
2 | using Sitefinity_CLI.Services.Contracts;
3 |
4 | namespace Sitefinity_CLI.Tests.UpgradeCommandTests.Mocks
5 | {
6 | internal class VisualStudioServiceMock : IVisualStudioService
7 | {
8 | public void ExecuteNugetInstall(InstallNugetPackageOptions options)
9 | {
10 | }
11 |
12 | public void ExecuteVisualStudioUpgrade(UpgradeOptions options)
13 | {
14 | }
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Migrations/Common/QueryItem.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Text;
5 | using System.Threading.Tasks;
6 |
7 | namespace Progress.Sitefinity.MigrationTool.ConsoleApp.Migrations.Common;
8 | internal class QueryItem
9 | {
10 | public bool IsGroup { get; set; }
11 |
12 | public string Join { get; set; }
13 |
14 | public string Name { get; set; }
15 |
16 | public string Value { get; set; }
17 |
18 | public Condition Condition { get; set; }
19 | }
20 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/MVC/Views/UnsubscribeForm/UnsubscribeFormByLink.UnsubscribeMessage.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.EmailCampaigns.Mvc.Models.UnsubscribeForm.UnsubscribeFormViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 |
5 |
6 | @if (ViewBag.IsSubscribe == false)
7 | {
8 |
@Html.Resource("UnsubscribeSuccessful")
9 | }
10 |
@Html.HtmlSanitize(Model.Message)
11 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/MVC/Views/UnsubscribeForm/UnsubscribeFormByLink.UnsubscribeMessage.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.EmailCampaigns.Mvc.Models.UnsubscribeForm.UnsubscribeFormViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 |
5 |
6 | @if (ViewBag.IsSubscribe == false)
7 | {
8 |
@Html.Resource("UnsubscribeSuccessful")
9 | }
10 |
@Html.HtmlSanitize(Model.Message)
11 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/MVC/Views/UnsubscribeForm/UnsubscribeFormByLink.UnsubscribeMessage.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.EmailCampaigns.Mvc.Models.UnsubscribeForm.UnsubscribeFormViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 |
5 |
6 | @if (ViewBag.IsSubscribe == false)
7 | {
8 |
@Html.Resource("UnsubscribeSuccessful")
9 | }
10 |
@Html.HtmlSanitize(Model.Message)
11 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/MVC/Views/UnsubscribeForm/UnsubscribeFormByLink.UnsubscribeMessage.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.EmailCampaigns.Mvc.Models.UnsubscribeForm.UnsubscribeFormViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 |
5 |
6 | @if (ViewBag.IsSubscribe == false)
7 | {
8 |
@Html.Resource("UnsubscribeSuccessful")
9 | }
10 |
@Html.HtmlSanitize(Model.Message)
11 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/MVC/Views/UnsubscribeForm/UnsubscribeFormByLink.UnsubscribeMessage.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.EmailCampaigns.Mvc.Models.UnsubscribeForm.UnsubscribeFormViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 |
5 |
6 | @if (ViewBag.IsSubscribe == false)
7 | {
8 |
@Html.Resource("UnsubscribeSuccessful")
9 | }
10 |
@Html.HtmlSanitize(Model.Message)
11 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/MVC/Views/UnsubscribeForm/UnsubscribeFormByLink.UnsubscribeMessage.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.EmailCampaigns.Mvc.Models.UnsubscribeForm.UnsubscribeFormViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 |
5 |
6 | @if (ViewBag.IsSubscribe == false)
7 | {
8 |
@Html.Resource("UnsubscribeSuccessful")
9 | }
10 |
@Html.HtmlSanitize(Model.Message)
11 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/MVC/Views/UnsubscribeForm/UnsubscribeFormByLink.UnsubscribeMessage.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.EmailCampaigns.Mvc.Models.UnsubscribeForm.UnsubscribeFormViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 |
5 |
6 | @if (ViewBag.IsSubscribe == false)
7 | {
8 |
@Html.Resource("UnsubscribeSuccessful")
9 | }
10 |
@Html.HtmlSanitize(Model.Message)
11 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/MVC/Views/UnsubscribeForm/UnsubscribeFormByLink.UnsubscribeMessage.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.EmailCampaigns.Mvc.Models.UnsubscribeForm.UnsubscribeFormViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 |
5 |
6 | @if (ViewBag.IsSubscribe == false)
7 | {
8 |
@Html.Resource("UnsubscribeSuccessful")
9 | }
10 |
@Html.HtmlSanitize(Model.Message)
11 |
--------------------------------------------------------------------------------
/Sitefinity CLI/PackageManagement/Contracts/INuGetCliClient.cs:
--------------------------------------------------------------------------------
1 | using System.Collections.Generic;
2 | using Sitefinity_CLI.Model;
3 |
4 | namespace Sitefinity_CLI.PackageManagement.Contracts
5 | {
6 | internal interface INuGetCliClient
7 | {
8 | //void InstallPackage(string packageId, string version, string solutionDirectory, IEnumerable sources);
9 | void InstallPackage(string packageId, string version, string solutionDirectory, string nugetConfigPath);
10 |
11 | void Restore(string solutionFilePath);
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/Sitefinity CLI/PackageManagement/Contracts/IPackagesConfigFileEditor.cs:
--------------------------------------------------------------------------------
1 | using System.Collections.Generic;
2 | using Sitefinity_CLI.PackageManagement.Implementations;
3 |
4 | namespace Sitefinity_CLI.PackageManagement.Contracts
5 | {
6 | internal interface IPackagesConfigFileEditor
7 | {
8 | IEnumerable GetPackages(string packagesConfigFilePath);
9 |
10 | NuGetPackage FindPackage(string packagesConfigFilePath, string packageId);
11 |
12 | void RemovePackage(string packagesConfigFilePath, string packageId);
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/MVC/Views/FlatTaxonomy/FlatTaxonomy.SimpleList.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/widgets/facets/_sf-facets.scss:
--------------------------------------------------------------------------------
1 | .sf-facets-filter-label {
2 | background-color: rgba(108, 117, 125, 0.1) !important;
3 | }
4 | .sf-facets-remove-filter {
5 | right: 0;
6 | }
7 |
8 | @if $has-rtl-support {
9 |
10 | @include rtl-cultures {
11 |
12 | .form-check {
13 | padding-right: 1.25rem;
14 | padding-left: 0;
15 | }
16 |
17 | .form-check-input {
18 | margin-right: -1.25rem;
19 | margin-left: 0;
20 | }
21 | }
22 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/widgets/siteSelector/_sf-site-selector.scss:
--------------------------------------------------------------------------------
1 | .sf-site-selector {
2 |
3 | a,
4 | span,
5 | strong {
6 | @extend %pt-1; //.25rem
7 | @extend %pb-1; //.25rem
8 | @extend %pl-2; //.5rem
9 | @extend %pr-2; //.5rem
10 |
11 | display: inline-block;
12 | font-size: $site-selector-font-size;
13 | border-radius: $site-selector-border-radius;
14 |
15 | &.selected {
16 | background-color: $site-selector--selected-background;
17 | color: $site-selector--selected-color;
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/MVC/Views/FlatTaxonomy/FlatTaxonomy.SimpleList.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 |
4 | @foreach (var taxa in Model.Taxa)
5 | {
6 | -
7 | @taxa.Title
8 |
9 | @if (Model.ShowItemCount)
10 | {
11 | @:(@taxa.Count)
12 | }
13 |
14 |
15 | }
16 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/MVC/Views/FlatTaxonomy/FlatTaxonomy.SimpleList.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/widgets/facets/_sf-facets.scss:
--------------------------------------------------------------------------------
1 | .sf-facets-filter-label {
2 | background-color: rgba(108, 117, 125, 0.1) !important;
3 | }
4 | .sf-facets-remove-filter {
5 | right: 0;
6 | }
7 |
8 | @if $has-rtl-support {
9 |
10 | @include rtl-cultures {
11 |
12 | .form-check {
13 | padding-right: 1.25rem;
14 | padding-left: 0;
15 | }
16 |
17 | .form-check-input {
18 | margin-right: -1.25rem;
19 | margin-left: 0;
20 | }
21 | }
22 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/widgets/siteSelector/_sf-site-selector.scss:
--------------------------------------------------------------------------------
1 | .sf-site-selector {
2 |
3 | a,
4 | span,
5 | strong {
6 | @extend %pt-1; //.25rem
7 | @extend %pb-1; //.25rem
8 | @extend %pl-2; //.5rem
9 | @extend %pr-2; //.5rem
10 |
11 | display: inline-block;
12 | font-size: $site-selector-font-size;
13 | border-radius: $site-selector-border-radius;
14 |
15 | &.selected {
16 | background-color: $site-selector--selected-background;
17 | color: $site-selector--selected-color;
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/MVC/Views/FlatTaxonomy/FlatTaxonomy.SimpleList.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 |
4 | @foreach (var taxa in Model.Taxa)
5 | {
6 | -
7 | @taxa.Title
8 |
9 | @if (Model.ShowItemCount)
10 | {
11 | @:(@taxa.Count)
12 | }
13 |
14 |
15 | }
16 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/MVC/Views/FlatTaxonomy/FlatTaxonomy.SimpleList.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 |
4 | @foreach (var taxa in Model.Taxa)
5 | {
6 | -
7 | @taxa.Title
8 |
9 | @if (Model.ShowItemCount)
10 | {
11 | @:(@taxa.Count)
12 | }
13 |
14 |
15 | }
16 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/MVC/Views/FlatTaxonomy/FlatTaxonomy.SimpleList.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 |
4 | @foreach (var taxa in Model.Taxa)
5 | {
6 | -
7 | @taxa.Title
8 |
9 | @if (Model.ShowItemCount)
10 | {
11 | @:(@taxa.Count)
12 | }
13 |
14 |
15 | }
16 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/MVC/Views/FlatTaxonomy/FlatTaxonomy.SimpleList.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 |
4 | @foreach (var taxa in Model.Taxa)
5 | {
6 | -
7 | @taxa.Title
8 |
9 | @if (Model.ShowItemCount)
10 | {
11 | @:(@taxa.Count)
12 | }
13 |
14 |
15 | }
16 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/MVC/Views/FlatTaxonomy/FlatTaxonomy.SimpleList.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 |
4 | @foreach (var taxa in Model.Taxa)
5 | {
6 | -
7 | @taxa.Title
8 |
9 | @if (Model.ShowItemCount)
10 | {
11 | @:(@taxa.Count)
12 | }
13 |
14 |
15 | }
16 |
--------------------------------------------------------------------------------
/Sitefinity CLI/PackageManagement/Contracts/IVisualStudioWorker.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Runtime.Versioning;
4 |
5 | namespace Sitefinity_CLI.PackageManagement.Contracts
6 | {
7 | public interface IVisualStudioWorker : IDisposable
8 | {
9 | void Initialize(string solutionFilePath, int waitTime);
10 |
11 | void Initialize(string solutionFilePath);
12 |
13 | void ExecuteScript(string scriptPath, List scriptParameters);
14 |
15 | void ExecutePackageManagerConsoleCommand(string command);
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/Sitefinity CLI/PackageManagement/Contracts/IUpgradeConfigGenerator.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Threading.Tasks;
4 | using Sitefinity_CLI.PackageManagement.Implementations;
5 |
6 | namespace Sitefinity_CLI.PackageManagement.Contracts
7 | {
8 | internal interface IUpgradeConfigGenerator
9 | {
10 | Task GenerateUpgradeConfig(IEnumerable<(string FilePath, Version Version)> projectFilePathsWithSitefinityVersion, NuGetPackage newSitefinityVersionPackageTree, string nugetConfigPath, IEnumerable additionalPackagesToUpgrade);
11 | }
12 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Model/FileModel.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Text;
4 |
5 | namespace Sitefinity_CLI.Model
6 | {
7 | ///
8 | /// Represents a file model
9 | ///
10 | internal class FileModel
11 | {
12 | ///
13 | /// The target absolute file path
14 | ///
15 | public string FilePath { get; set; }
16 |
17 | ///
18 | /// The template absolute file path
19 | ///
20 | public string TemplatePath { get; set; }
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/GridSystem/Templates/grid-3+3+3+3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-3+3+3+3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/GridSystem/Templates/grid-3+3+3+3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-3+3+3+3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-3+3+3+3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-3+3+3+3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-3+3+3+3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-3+3+3+3.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Model/DotnetPackageSearchResponseModel.cs:
--------------------------------------------------------------------------------
1 | using System.Collections.Generic;
2 |
3 | namespace Sitefinity_CLI.Model
4 | {
5 | internal class DotnetPackageSearchResponseModel
6 | {
7 | public List SearchResult { get; set; }
8 | }
9 |
10 | internal class SourceResult
11 | {
12 | public string SourceName { get; set; }
13 | public List Packages { get; set; }
14 | }
15 |
16 | internal class SourcePackage
17 | {
18 | public string Id { get; set; }
19 | public string Version { get; set; }
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Model/DeprecatedPackage.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace Sitefinity_CLI.Model
4 | {
5 | public class DeprecatedPackage
6 | {
7 | public DeprecatedPackage(string name, Version deprecatedInVersion)
8 | {
9 | ArgumentNullException.ThrowIfNull(name);
10 | ArgumentNullException.ThrowIfNull(deprecatedInVersion);
11 |
12 | this.Name = name;
13 | this.DeprecatedInVersion = deprecatedInVersion;
14 | }
15 |
16 | public string Name { get; set; }
17 |
18 | public Version DeprecatedInVersion { get; set; }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/IntegrationTests/Default/templates.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "FilePath": "Properties\\AssemblyInfo.cs",
4 | "TemplatePath": "AssemblyInfo.Template"
5 | },
6 | {
7 | "FilePath": "{0}.csproj",
8 | "TemplatePath": "csproj.Template"
9 | },
10 | {
11 | "FilePath": "DemoTests.cs",
12 | "TemplatePath": "DemoTests.Template"
13 | },
14 | {
15 | "FilePath": "packages.config",
16 | "TemplatePath": "packages.config.Template"
17 | },
18 | {
19 | "FilePath": "IntegrationTestsSettings.json",
20 | "TemplatePath": "IntegrationTestsSettings.json.Template"
21 | }
22 | ]
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/IntegrationTests/Default/templates.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "FilePath": "Properties\\AssemblyInfo.cs",
4 | "TemplatePath": "AssemblyInfo.Template"
5 | },
6 | {
7 | "FilePath": "{0}.csproj",
8 | "TemplatePath": "csproj.Template"
9 | },
10 | {
11 | "FilePath": "DemoTests.cs",
12 | "TemplatePath": "DemoTests.Template"
13 | },
14 | {
15 | "FilePath": "packages.config",
16 | "TemplatePath": "packages.config.Template"
17 | },
18 | {
19 | "FilePath": "IntegrationTestsSettings.json",
20 | "TemplatePath": "IntegrationTestsSettings.json.Template"
21 | }
22 | ]
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/IntegrationTests/Default/templates.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "FilePath": "Properties\\AssemblyInfo.cs",
4 | "TemplatePath": "AssemblyInfo.Template"
5 | },
6 | {
7 | "FilePath": "{0}.csproj",
8 | "TemplatePath": "csproj.Template"
9 | },
10 | {
11 | "FilePath": "DemoTests.cs",
12 | "TemplatePath": "DemoTests.Template"
13 | },
14 | {
15 | "FilePath": "packages.config",
16 | "TemplatePath": "packages.config.Template"
17 | },
18 | {
19 | "FilePath": "IntegrationTestsSettings.json",
20 | "TemplatePath": "IntegrationTestsSettings.json.Template"
21 | }
22 | ]
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/IntegrationTests/Default/templates.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "FilePath": "Properties\\AssemblyInfo.cs",
4 | "TemplatePath": "AssemblyInfo.Template"
5 | },
6 | {
7 | "FilePath": "{0}.csproj",
8 | "TemplatePath": "csproj.Template"
9 | },
10 | {
11 | "FilePath": "DemoTests.cs",
12 | "TemplatePath": "DemoTests.Template"
13 | },
14 | {
15 | "FilePath": "packages.config",
16 | "TemplatePath": "packages.config.Template"
17 | },
18 | {
19 | "FilePath": "IntegrationTestsSettings.json",
20 | "TemplatePath": "IntegrationTestsSettings.json.Template"
21 | }
22 | ]
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/IntegrationTests/Default/templates.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "FilePath": "Properties\\AssemblyInfo.cs",
4 | "TemplatePath": "AssemblyInfo.Template"
5 | },
6 | {
7 | "FilePath": "{0}.csproj",
8 | "TemplatePath": "csproj.Template"
9 | },
10 | {
11 | "FilePath": "DemoTests.cs",
12 | "TemplatePath": "DemoTests.Template"
13 | },
14 | {
15 | "FilePath": "packages.config",
16 | "TemplatePath": "packages.config.Template"
17 | },
18 | {
19 | "FilePath": "IntegrationTestsSettings.json",
20 | "TemplatePath": "IntegrationTestsSettings.json.Template"
21 | }
22 | ]
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/IntegrationTests/Default/templates.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "FilePath": "Properties\\AssemblyInfo.cs",
4 | "TemplatePath": "AssemblyInfo.Template"
5 | },
6 | {
7 | "FilePath": "{0}.csproj",
8 | "TemplatePath": "csproj.Template"
9 | },
10 | {
11 | "FilePath": "DemoTests.cs",
12 | "TemplatePath": "DemoTests.Template"
13 | },
14 | {
15 | "FilePath": "packages.config",
16 | "TemplatePath": "packages.config.Template"
17 | },
18 | {
19 | "FilePath": "IntegrationTestsSettings.json",
20 | "TemplatePath": "IntegrationTestsSettings.json.Template"
21 | }
22 | ]
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/MVC/Views/EmbedCode/Index.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.InlineClientAssets.Mvc.Models.EmbedCode.EmbedCodeViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.InlineClientAssets.Mvc.Models;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 | @using Telerik.Sitefinity.Services;
6 |
7 | @if (SystemManager.IsDesignMode && !SystemManager.IsPreviewMode && !SystemManager.IsInlineEditingMode)
8 | {
9 |
10 |
@ViewBag.DesignModeContent
11 |
12 |
13 | }
14 | else
15 | {
16 | @Html.Raw(Model.EmbedCode)
17 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/MVC/Views/EmbedCode/Index.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.InlineClientAssets.Mvc.Models.EmbedCode.EmbedCodeViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.InlineClientAssets.Mvc.Models;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 | @using Telerik.Sitefinity.Services;
6 |
7 | @if (SystemManager.IsDesignMode && !SystemManager.IsPreviewMode && !SystemManager.IsInlineEditingMode)
8 | {
9 |
10 |
@ViewBag.DesignModeContent
11 |
12 |
13 | }
14 | else
15 | {
16 | @Html.Raw(Model.EmbedCode)
17 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/MVC/Views/EmbedCode/Index.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.InlineClientAssets.Mvc.Models.EmbedCode.EmbedCodeViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.InlineClientAssets.Mvc.Models;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 | @using Telerik.Sitefinity.Services;
6 |
7 | @if (SystemManager.IsDesignMode && !SystemManager.IsPreviewMode && !SystemManager.IsInlineEditingMode)
8 | {
9 |
10 |
@ViewBag.DesignModeContent
11 |
12 |
13 | }
14 | else
15 | {
16 | @Html.Raw(Model.EmbedCode)
17 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/MVC/Views/EmbedCode/Index.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.InlineClientAssets.Mvc.Models.EmbedCode.EmbedCodeViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.InlineClientAssets.Mvc.Models;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 | @using Telerik.Sitefinity.Services;
6 |
7 | @if (SystemManager.IsDesignMode && !SystemManager.IsPreviewMode && !SystemManager.IsInlineEditingMode)
8 | {
9 |
10 |
@ViewBag.DesignModeContent
11 |
12 |
13 | }
14 | else
15 | {
16 | @Html.Raw(Model.EmbedCode)
17 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/MVC/Views/EmbedCode/Index.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.InlineClientAssets.Mvc.Models.EmbedCode.EmbedCodeViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.InlineClientAssets.Mvc.Models;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 | @using Telerik.Sitefinity.Services;
6 |
7 | @if (SystemManager.IsDesignMode && !SystemManager.IsPreviewMode && !SystemManager.IsInlineEditingMode)
8 | {
9 |
10 |
@ViewBag.DesignModeContent
11 |
12 |
13 | }
14 | else
15 | {
16 | @Html.Raw(Model.EmbedCode)
17 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/MVC/Views/EmbedCode/Index.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.InlineClientAssets.Mvc.Models.EmbedCode.EmbedCodeViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.InlineClientAssets.Mvc.Models;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 | @using Telerik.Sitefinity.Services;
6 |
7 | @if (SystemManager.IsDesignMode && !SystemManager.IsPreviewMode && !SystemManager.IsInlineEditingMode)
8 | {
9 |
10 |
@ViewBag.DesignModeContent
11 |
12 |
13 | }
14 | else
15 | {
16 | @Html.Raw(Model.EmbedCode)
17 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/MVC/Views/EmbedCode/Index.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.InlineClientAssets.Mvc.Models.EmbedCode.EmbedCodeViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.InlineClientAssets.Mvc.Models;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 | @using Telerik.Sitefinity.Services;
6 |
7 | @if (SystemManager.IsDesignMode && !SystemManager.IsPreviewMode && !SystemManager.IsInlineEditingMode)
8 | {
9 |
10 |
@ViewBag.DesignModeContent
11 |
12 |
13 | }
14 | else
15 | {
16 | @Html.Raw(Model.EmbedCode)
17 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/MVC/Views/EmbedCode/Index.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.InlineClientAssets.Mvc.Models.EmbedCode.EmbedCodeViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.InlineClientAssets.Mvc.Models;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 | @using Telerik.Sitefinity.Services;
6 |
7 | @if (SystemManager.IsDesignMode && !SystemManager.IsPreviewMode && !SystemManager.IsInlineEditingMode)
8 | {
9 |
10 |
@ViewBag.DesignModeContent
11 |
12 |
13 | }
14 | else
15 | {
16 | @Html.Raw(Model.EmbedCode)
17 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/PackageManagement/NuGet.Config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/widgets/form/_sf-form.scss:
--------------------------------------------------------------------------------
1 | @if $has-rtl-support {
2 |
3 | @include rtl-cultures {
4 |
5 | .checkbox,.radio {
6 | label {
7 | @extend %pl-0; //0
8 | @extend %pr-4; //1.5rem
9 | }
10 | }
11 |
12 | .checkbox {
13 | input[type=checkbox] {
14 | @extend %pl-0; //0
15 |
16 | margin-right: -20px;
17 | }
18 | }
19 |
20 | .radio {
21 | input[type=radio] {
22 | @extend %pl-0; //0
23 |
24 | margin-right: -20px;
25 | }
26 | }
27 | }
28 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/assets/src/sitefinity/sass/widgets/form/_sf-form.scss:
--------------------------------------------------------------------------------
1 | @if $has-rtl-support {
2 |
3 | @include rtl-cultures {
4 |
5 | .checkbox,.radio {
6 | label {
7 | @extend %pl-0; //0
8 | @extend %pr-4; //1.5rem
9 | }
10 | }
11 |
12 | .checkbox {
13 | input[type=checkbox] {
14 | @extend %pl-0; //0
15 |
16 | margin-right: -20px;
17 | }
18 | }
19 |
20 | .radio {
21 | input[type=radio] {
22 | @extend %pl-0; //0
23 |
24 | margin-right: -20px;
25 | }
26 | }
27 | }
28 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/VisualStudio/ICsProjectFileEditor.cs:
--------------------------------------------------------------------------------
1 | using System.Collections.Generic;
2 |
3 | namespace Sitefinity_CLI.VisualStudio
4 | {
5 | public interface ICsProjectFileEditor
6 | {
7 | void RemovePropertyGroupElement(string csProjFilePath, string elementName);
8 |
9 | void RemoveReference(string csProjFilePath, string assemblyFilePath);
10 |
11 | IEnumerable GetReferences(string csProjFilePath);
12 |
13 | void AddFiles(string csProjFilePath, IEnumerable filePaths);
14 |
15 | void RemoveFiles(string csProjFilePath, IEnumerable filePaths);
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/Sitefinity CLI/PackageManagement/Contracts/INuGetApiClient.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Text.RegularExpressions;
4 | using System.Threading.Tasks;
5 | using NuGet.Configuration;
6 | using Sitefinity_CLI.Model;
7 | using Sitefinity_CLI.PackageManagement.Implementations;
8 |
9 | namespace Sitefinity_CLI.PackageManagement.Contracts
10 | {
11 | internal interface INuGetApiClient
12 | {
13 | Task GetPackageWithFullDependencyTree(string id, string version, IEnumerable sources, Regex supportedFrameworksRegex = null, Func shouldBreakSearch = null);
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/Sitefinity CLI.Tests/UpgradeCommandTests/Mocks/SitefinityConfigServiceMock.cs:
--------------------------------------------------------------------------------
1 | using System.Collections.Generic;
2 | using Sitefinity_CLI.Services.Contracts;
3 |
4 | namespace Sitefinity_CLI.Tests.UpgradeCommandTests.Mocks
5 | {
6 | internal class SitefinityConfigServiceMock : ISitefinityConfigService
7 | {
8 | public IDictionary GetConfigurtaionsForProjectsWithoutSitefinity(string solutionPath)
9 | {
10 | return new Dictionary();
11 | }
12 |
13 | public void RestoreConfigurationValues(IDictionary configsWithoutSitefinity)
14 | {
15 | }
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/MVC/Views/HierarchicalTaxonomy/HierarchicalTaxonomy.CategoriesList.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 |
5 |
6 | @foreach (var taxon in Model.Taxa)
7 | {
8 | -
9 | @taxon.Title
10 |
11 | @if (Model.ShowItemCount)
12 | {
13 | @Html.HtmlSanitize(string.Format("({0})", taxon.Count))
14 | }
15 |
16 | }
17 |
18 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/MVC/Views/HierarchicalTaxonomy/HierarchicalTaxonomy.CategoriesList.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 |
5 |
6 | @foreach (var taxon in Model.Taxa)
7 | {
8 | -
9 | @taxon.Title
10 |
11 | @if (Model.ShowItemCount)
12 | {
13 | @Html.HtmlSanitize(string.Format("({0})", taxon.Count))
14 | }
15 |
16 | }
17 |
18 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/MVC/Views/HierarchicalTaxonomy/HierarchicalTaxonomy.CategoriesList.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 |
5 |
6 | @foreach (var taxon in Model.Taxa)
7 | {
8 | -
9 | @taxon.Title
10 |
11 | @if (Model.ShowItemCount)
12 | {
13 | @Html.HtmlSanitize(string.Format("({0})", taxon.Count))
14 | }
15 |
16 | }
17 |
18 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/MVC/Views/HierarchicalTaxonomy/HierarchicalTaxonomy.CategoriesList.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 |
5 |
6 | @foreach (var taxon in Model.Taxa)
7 | {
8 | -
9 | @taxon.Title
10 |
11 | @if (Model.ShowItemCount)
12 | {
13 | @Html.HtmlSanitize(string.Format("({0})", taxon.Count))
14 | }
15 |
16 | }
17 |
18 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/MVC/Views/HierarchicalTaxonomy/HierarchicalTaxonomy.CategoriesList.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 |
5 |
6 | @foreach (var taxon in Model.Taxa)
7 | {
8 | -
9 | @taxon.Title
10 |
11 | @if (Model.ShowItemCount)
12 | {
13 | @Html.HtmlSanitize(string.Format("({0})", taxon.Count))
14 | }
15 |
16 | }
17 |
18 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/MVC/Views/HierarchicalTaxonomy/HierarchicalTaxonomy.CategoriesList.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 |
5 |
6 | @foreach (var taxon in Model.Taxa)
7 | {
8 | -
9 | @taxon.Title
10 |
11 | @if (Model.ShowItemCount)
12 | {
13 | @Html.HtmlSanitize(string.Format("({0})", taxon.Count))
14 | }
15 |
16 | }
17 |
18 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/MVC/Views/HierarchicalTaxonomy/HierarchicalTaxonomy.CategoriesList.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 |
5 |
6 | @foreach (var taxon in Model.Taxa)
7 | {
8 | -
9 | @taxon.Title
10 |
11 | @if (Model.ShowItemCount)
12 | {
13 | @Html.HtmlSanitize(string.Format("({0})", taxon.Count))
14 | }
15 |
16 | }
17 |
18 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/MVC/Views/HierarchicalTaxonomy/HierarchicalTaxonomy.CategoriesList.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 |
5 |
6 | @foreach (var taxon in Model.Taxa)
7 | {
8 | -
9 | @taxon.Title
10 |
11 | @if (Model.ShowItemCount)
12 | {
13 | @Html.HtmlSanitize(string.Format("({0})", taxon.Count))
14 | }
15 |
16 | }
17 |
18 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/MVC/Views/FlatTaxonomy/FlatTaxonomy.CloudList.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 |
4 | @foreach (var taxa in Model.Taxa)
5 | {
6 | var cloudSizeClass = "fs-" + (6 - @taxa.CloudSize);
7 |
8 | -
9 | @taxa.Title
10 |
11 | @if (Model.ShowItemCount)
12 | {
13 | @:(@taxa.Count)
14 | }
15 |
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/MVC/Views/FlatTaxonomy/FlatTaxonomy.CloudList.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 |
4 | @foreach (var taxa in Model.Taxa)
5 | {
6 | var cloudSizeClass = "fs-" + (6 - @taxa.CloudSize);
7 |
8 | -
9 | @taxa.Title
10 |
11 | @if (Model.ShowItemCount)
12 | {
13 | @:(@taxa.Count)
14 | }
15 |
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/MVC/Views/FlatTaxonomy/FlatTaxonomy.CloudList.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 |
4 | @foreach (var taxa in Model.Taxa)
5 | {
6 | var cloudSizeClass = "fs-" + (6 - @taxa.CloudSize);
7 |
8 | -
9 | @taxa.Title
10 |
11 | @if (Model.ShowItemCount)
12 | {
13 | @:(@taxa.Count)
14 | }
15 |
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/MVC/Views/FlatTaxonomy/FlatTaxonomy.CloudList.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 |
4 | @foreach (var taxa in Model.Taxa)
5 | {
6 | var cloudSizeClass = "fs-" + (6 - @taxa.CloudSize);
7 |
8 | -
9 | @taxa.Title
10 |
11 | @if (Model.ShowItemCount)
12 | {
13 | @:(@taxa.Count)
14 | }
15 |
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/MVC/Views/FlatTaxonomy/FlatTaxonomy.CloudList.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 |
4 | @foreach (var taxa in Model.Taxa)
5 | {
6 | var cloudSizeClass = "fs-" + (6 - @taxa.CloudSize);
7 |
8 | -
9 | @taxa.Title
10 |
11 | @if (Model.ShowItemCount)
12 | {
13 | @:(@taxa.Count)
14 | }
15 |
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/MVC/Views/FlatTaxonomy/FlatTaxonomy.CloudList.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 |
4 | @foreach (var taxa in Model.Taxa)
5 | {
6 | var cloudSizeClass = "fs-" + (6 - @taxa.CloudSize);
7 |
8 | -
9 | @taxa.Title
10 |
11 | @if (Model.ShowItemCount)
12 | {
13 | @:(@taxa.Count)
14 | }
15 |
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
1 | Copyright © 2020 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved.
2 |
3 | Licensed under the Apache License, Version 2.0 (the "License");
4 | you may not use this file except in compliance with the License.
5 | You may obtain a copy of the License at
6 |
7 | http://www.apache.org/licenses/LICENSE-2.0
8 |
9 | Unless required by applicable law or agreed to in writing, software
10 | distributed under the License is distributed on an "AS IS" BASIS,
11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 | See the License for the specific language governing permissions and
13 | limitations under the License.
14 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/MVC/Views/FlatTaxonomy/FlatTaxonomy.CloudList.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/MVC/Views/FlatTaxonomy/FlatTaxonomy.CloudList.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/MVC/Views/AccountActivation/AccountActivation.AccountActivation.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Identity.Mvc.Models.AccountActivation.AccountActivationViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers
4 |
5 |
6 | @if (Model.Activated)
7 | {
8 |
@Html.Resource("AccountActivationSuccess")
9 |
10 |
@Html.Resource("ProfilePageUrlTitle")
11 | }
12 | else if (Model.AttemptedActivation)
13 | {
14 |
@Html.Resource("AccountActivationFail")
15 | }
16 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/MVC/Views/JavaScript/Index.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.InlineClientAssets.Mvc.Models.JavaScript.JavaScriptViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.InlineClientAssets.Mvc.Models;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 | @using Telerik.Sitefinity.Services;
6 |
7 | @if (Model.Position == EmbedPosition.InPlace && !(SystemManager.IsDesignMode && !SystemManager.IsPreviewMode && !SystemManager.IsInlineEditingMode))
8 | {
9 | @Html.Raw(Model.JavaScriptCode)
10 | }
11 |
12 | @if (!string.IsNullOrEmpty(Model.DesignModeContent))
13 | {
14 |
15 |
@Model.DesignModeContent
16 |
17 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/MVC/Views/FlatTaxonomy/FlatTaxonomy.TagCloud.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 |
4 | @foreach (var taxa in Model.Taxa)
5 | {
6 | var cloudSizeClass = "fs-" + (6 - @taxa.CloudSize);
7 |
8 | -
9 | @taxa.Title
10 |
11 | @if (Model.ShowItemCount)
12 | {
13 | @:(@taxa.Count)
14 | }
15 |
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/MVC/Views/AccountActivation/AccountActivation.AccountActivation.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Identity.Mvc.Models.AccountActivation.AccountActivationViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers
4 |
5 |
6 | @if (Model.Activated)
7 | {
8 |
@Html.Resource("AccountActivationSuccess")
9 |
10 |
@Html.Resource("ProfilePageUrlTitle")
11 | }
12 | else if (Model.AttemptedActivation)
13 | {
14 |
@Html.Resource("AccountActivationFail")
15 | }
16 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/MVC/Views/JavaScript/Index.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.InlineClientAssets.Mvc.Models.JavaScript.JavaScriptViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.InlineClientAssets.Mvc.Models;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 | @using Telerik.Sitefinity.Services;
6 |
7 | @if (Model.Position == EmbedPosition.InPlace && !(SystemManager.IsDesignMode && !SystemManager.IsPreviewMode && !SystemManager.IsInlineEditingMode))
8 | {
9 | @Html.Raw(Model.JavaScriptCode)
10 | }
11 |
12 | @if (!string.IsNullOrEmpty(Model.DesignModeContent))
13 | {
14 |
15 |
@Model.DesignModeContent
16 |
17 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/MVC/Views/FlatTaxonomy/FlatTaxonomy.TagCloud.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 |
4 | @foreach (var taxa in Model.Taxa)
5 | {
6 | var cloudSizeClass = "fs-" + (6 - @taxa.CloudSize);
7 |
8 | -
9 | @taxa.Title
10 |
11 | @if (Model.ShowItemCount)
12 | {
13 | @:(@taxa.Count)
14 | }
15 |
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/MVC/Views/FlatTaxonomy/FlatTaxonomy.TagCloud.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 |
4 | @foreach (var taxa in Model.Taxa)
5 | {
6 | var cloudSizeClass = "fs-" + (6 - @taxa.CloudSize);
7 |
8 | -
9 | @taxa.Title
10 |
11 | @if (Model.ShowItemCount)
12 | {
13 | @:(@taxa.Count)
14 | }
15 |
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/MVC/Views/FlatTaxonomy/FlatTaxonomy.TagCloud.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 |
4 | @foreach (var taxa in Model.Taxa)
5 | {
6 | var cloudSizeClass = "fs-" + (6 - @taxa.CloudSize);
7 |
8 | -
9 | @taxa.Title
10 |
11 | @if (Model.ShowItemCount)
12 | {
13 | @:(@taxa.Count)
14 | }
15 |
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/MVC/Views/FlatTaxonomy/FlatTaxonomy.TagCloud.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 |
4 | @foreach (var taxa in Model.Taxa)
5 | {
6 | var cloudSizeClass = "fs-" + (6 - @taxa.CloudSize);
7 |
8 | -
9 | @taxa.Title
10 |
11 | @if (Model.ShowItemCount)
12 | {
13 | @:(@taxa.Count)
14 | }
15 |
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/MVC/Views/FlatTaxonomy/FlatTaxonomy.TagCloud.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 |
4 | @foreach (var taxa in Model.Taxa)
5 | {
6 | var cloudSizeClass = "fs-" + (6 - @taxa.CloudSize);
7 |
8 | -
9 | @taxa.Title
10 |
11 | @if (Model.ShowItemCount)
12 | {
13 | @:(@taxa.Count)
14 | }
15 |
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/Sitefinity CLI.Tests/SolutionFileEditorTests/Data/WithoutElementsSln.template:
--------------------------------------------------------------------------------
1 | Microsoft Visual Studio Solution File, Format Version 12.00
2 | # Visual Studio 15
3 | VisualStudioVersion = 15.0.28307.705
4 | MinimumVisualStudioVersion = 10.0.40219.1
5 | Global
6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
7 | Debug|Any CPU = Debug|Any CPU
8 | Release Pro|Any CPU = Release Pro|Any CPU
9 | Release|Any CPU = Release|Any CPU
10 | EndGlobalSection
11 | GlobalSection(SolutionProperties) = preSolution
12 | HideSolutionNode = FALSE
13 | EndGlobalSection
14 | GlobalSection(ExtensibilityGlobals) = postSolution
15 | SolutionGuid = {D9283185-5D9B-471E-9D2A-F9F0C6DB4292}
16 | EndGlobalSection
17 | EndGlobal
18 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/GridSystem/Templates/grid-2+3+2+3+2.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-2+3+2+3+2.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/GridSystem/Templates/grid-2+3+2+3+2.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-2+3+2+3+2.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-2+3+2+3+2.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/MVC/Views/Profile/ConfirmationEmailSent.ProfileEdit.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Identity.Mvc.Models.Profile.ProfileEmailEditViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Identity.Mvc.Models.Profile@using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 | @using Telerik.Sitefinity.Modules.Pages
5 | @using Telerik.Sitefinity.UI.MVC;
6 | @using Telerik.Sitefinity.Utilities;
7 | @using Telerik.Sitefinity.Services;
8 |
9 | @Html.Script(ScriptRef.JQuery, "top", false)
10 |
11 |
12 |
13 |
@Html.Resource("ConfirmationEmailSentTitle")
14 |
@Html.Resource("ConfirmationEmailSentDescription") @ViewBag.Email
15 |
16 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-2+3+2+3+2.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.2/ResourcePackage/Bootstrap5/MVC/Views/Profile/ConfirmationEmailSent.ProfileEdit.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Identity.Mvc.Models.Profile.ProfileEmailEditViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Identity.Mvc.Models.Profile@using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 | @using Telerik.Sitefinity.Modules.Pages
5 | @using Telerik.Sitefinity.UI.MVC;
6 | @using Telerik.Sitefinity.Utilities;
7 | @using Telerik.Sitefinity.Services;
8 |
9 | @Html.Script(ScriptRef.JQuery, "top", false)
10 |
11 |
12 |
13 |
@Html.Resource("ConfirmationEmailSentTitle")
14 |
@Html.Resource("ConfirmationEmailSentDescription") @ViewBag.Email
15 |
16 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-2+3+2+3+2.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.3/ResourcePackage/Bootstrap5/MVC/Views/Profile/ConfirmationEmailSent.ProfileEdit.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Identity.Mvc.Models.Profile.ProfileEmailEditViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Identity.Mvc.Models.Profile@using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 | @using Telerik.Sitefinity.Modules.Pages
5 | @using Telerik.Sitefinity.UI.MVC;
6 | @using Telerik.Sitefinity.Utilities;
7 | @using Telerik.Sitefinity.Services;
8 |
9 | @Html.Script(ScriptRef.JQuery, "top", false)
10 |
11 |
12 |
13 |
@Html.Resource("ConfirmationEmailSentTitle")
14 |
@Html.Resource("ConfirmationEmailSentDescription") @ViewBag.Email
15 |
16 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/GridSystem/Templates/grid-2+3+2+3+2.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.4/ResourcePackage/Bootstrap5/MVC/Views/Profile/ConfirmationEmailSent.ProfileEdit.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Identity.Mvc.Models.Profile.ProfileEmailEditViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.Identity.Mvc.Models.Profile@using Telerik.Sitefinity.Frontend.Mvc.Helpers;
4 | @using Telerik.Sitefinity.Modules.Pages
5 | @using Telerik.Sitefinity.UI.MVC;
6 | @using Telerik.Sitefinity.Utilities;
7 | @using Telerik.Sitefinity.Services;
8 |
9 | @Html.Script(ScriptRef.JQuery, "top", false)
10 |
11 |
12 |
13 |
@Html.Resource("ConfirmationEmailSentTitle")
14 |
@Html.Resource("ConfirmationEmailSentDescription") @ViewBag.Email
15 |
16 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap4/MVC/Views/FlatTaxonomy/FlatTaxonomy.TagCloud.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap4/MVC/Views/FlatTaxonomy/FlatTaxonomy.TagCloud.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.Taxonomies.Mvc.Models.TaxonomyViewModel
2 |
3 |
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/14.4/ResourcePackage/Bootstrap5/MVC/Views/JavaScript/Index.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.InlineClientAssets.Mvc.Models.JavaScript.JavaScriptViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.InlineClientAssets.Mvc.Models;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 | @using Telerik.Sitefinity.Services;
6 |
7 | @if (Model.Position == EmbedPosition.InPlace && !(SystemManager.IsDesignMode && !SystemManager.IsPreviewMode && !SystemManager.IsInlineEditingMode))
8 | {
9 | @Html.Raw(Model.JavaScriptCode)
10 | }
11 |
12 | @if (!string.IsNullOrEmpty(Model.DesignModeContent))
13 | {
14 |
15 |
@Model.DesignModeContent
16 |
17 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.0/ResourcePackage/Bootstrap5/MVC/Views/JavaScript/Index.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.InlineClientAssets.Mvc.Models.JavaScript.JavaScriptViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.InlineClientAssets.Mvc.Models;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 | @using Telerik.Sitefinity.Services;
6 |
7 | @if (Model.Position == EmbedPosition.InPlace && !(SystemManager.IsDesignMode && !SystemManager.IsPreviewMode && !SystemManager.IsInlineEditingMode))
8 | {
9 | @Html.Raw(Model.JavaScriptCode)
10 | }
11 |
12 | @if (!string.IsNullOrEmpty(Model.DesignModeContent))
13 | {
14 |
15 |
@Model.DesignModeContent
16 |
17 | }
--------------------------------------------------------------------------------
/Sitefinity CLI/Templates/15.1/ResourcePackage/Bootstrap5/MVC/Views/JavaScript/Index.cshtml:
--------------------------------------------------------------------------------
1 | @model Telerik.Sitefinity.Frontend.InlineClientAssets.Mvc.Models.JavaScript.JavaScriptViewModel
2 |
3 | @using Telerik.Sitefinity.Frontend.InlineClientAssets.Mvc.Models;
4 | @using Telerik.Sitefinity.Frontend.Mvc.Helpers;
5 | @using Telerik.Sitefinity.Services;
6 |
7 | @if (Model.Position == EmbedPosition.InPlace && !(SystemManager.IsDesignMode && !SystemManager.IsPreviewMode && !SystemManager.IsInlineEditingMode))
8 | {
9 | @Html.Raw(Model.JavaScriptCode)
10 | }
11 |
12 | @if (!string.IsNullOrEmpty(Model.DesignModeContent))
13 | {
14 |
15 |
@Model.DesignModeContent
16 |
17 | }
--------------------------------------------------------------------------------