@@ -29,7 +29,7 @@ public static DocumentationLink StyleLink(string nameChunk)
29
29
{
30
30
return new DocumentationLink (
31
31
DocumentationLinkType . StyleSource ,
32
- $ "{ ConfigurationManager . AppSettings [ "GitHub" ] } /blob/master/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.{ nameChunk } .xaml",
32
+ $ "{ ConfigurationManager . AppSettings [ "GitHub" ] } /blob/master/src/ MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.{ nameChunk } .xaml",
33
33
nameChunk ) ;
34
34
}
35
35
@@ -39,7 +39,7 @@ public static DocumentationLink ApiLink<TClass>(string subNamespace)
39
39
40
40
return new DocumentationLink (
41
41
DocumentationLinkType . ControlSource ,
42
- $ "{ ConfigurationManager . AppSettings [ "GitHub" ] } /blob/master/MaterialDesignThemes.Wpf/{ subNamespace } /{ typeName } .cs",
42
+ $ "{ ConfigurationManager . AppSettings [ "GitHub" ] } /blob/master/src/ MaterialDesignThemes.Wpf/{ subNamespace } /{ typeName } .cs",
43
43
typeName ) ;
44
44
}
45
45
@@ -53,7 +53,7 @@ public static DocumentationLink ApiLink(Type type)
53
53
54
54
return new DocumentationLink (
55
55
DocumentationLinkType . ControlSource ,
56
- $ "{ ConfigurationManager . AppSettings [ "GitHub" ] } /blob/master/MaterialDesignThemes.Wpf/{ typeName } .cs",
56
+ $ "{ ConfigurationManager . AppSettings [ "GitHub" ] } /blob/master/src/ MaterialDesignThemes.Wpf/{ typeName } .cs",
57
57
typeName ) ;
58
58
}
59
59
@@ -72,7 +72,7 @@ public static DocumentationLink DemoPageLink<TDemoPage>(string? label, string? @
72
72
73
73
return new DocumentationLink (
74
74
DocumentationLinkType . DemoPageSource ,
75
- $ "{ ConfigurationManager . AppSettings [ "GitHub" ] } /blob/master/MainDemo.Wpf/{ ( string . IsNullOrWhiteSpace ( @namespace ) ? "" : ( "/" + @namespace + "/" ) ) } { typeof ( TDemoPage ) . Name } .{ ext } ",
75
+ $ "{ ConfigurationManager . AppSettings [ "GitHub" ] } /blob/master/src/ MainDemo.Wpf/{ ( string . IsNullOrWhiteSpace ( @namespace ) ? "" : ( "/" + @namespace + "/" ) ) } { typeof ( TDemoPage ) . Name } .{ ext } ",
76
76
label ?? typeof ( TDemoPage ) . Name ) ;
77
77
}
78
78
@@ -87,8 +87,5 @@ public static DocumentationLink SpecsLink(string url, string? label)
87
87
88
88
public ICommand Open { get ; }
89
89
90
- private void Execute ( object ? _ )
91
- {
92
- Link . OpenInBrowser ( Url ) ;
93
- }
90
+ private void Execute ( object ? _ ) => Link . OpenInBrowser ( Url ) ;
94
91
}
0 commit comments