Skip to content

Commit

Permalink
Build stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
abjerner committed Feb 25, 2020
1 parent 129b72b commit 920827f
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ src/Skybrud.LinkPicker/App_Data/NuGetBackup/
node_modules/
releases/temp/
src/.vs/
releases/github/*/*
6 changes: 6 additions & 0 deletions skybrud.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@
"**/*.xml",
"package.manifest"
]
},
{
"source": "src",
"patterns": [
"LICENSE.html"
]
}
]
}
Expand Down
20 changes: 17 additions & 3 deletions src/Skybrud.LinkPicker/Skybrud.LinkPicker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,22 @@
<PropertyGroup>
<Version>2.0.0-alpha001</Version>
<Authors>Anders Bjerner</Authors>
<Copyright>Copyright © 2019</Copyright>
<Company>Skybrud.dk</Company>
<Description>Library with common purpose functionality for working with .NET.</Description>
<Copyright>Copyright © 2020</Copyright>
</PropertyGroup>

<PropertyGroup>
<PackageId>Skybrud.LinkPicker</PackageId>
<PackageTags>Umbraco, Link, Picker, Media, Content, Url</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://packages.skybrud.dk/skybrud.linkpicker/</PackageProjectUrl>
<PackageIconUrl>http://www.skybrud.dk/img/5431sk/icon/favicon.ico</PackageIconUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/skybrud/Skybrud.LinkPicker</RepositoryUrl>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Skybrud.WebApi.Json" Version="1.0.4" />
<PackageReference Include="Skybrud.Umbraco.Elements" Version="1.0.0-alpha009">
<ExcludeAssets>contentFiles</ExcludeAssets>
</PackageReference>
Expand All @@ -25,7 +36,6 @@
<Content Include="App_Plugins\Skybrud.LinkPicker\**\*.css" />
<Content Include="App_Plugins\Skybrud.LinkPicker\**\*.html" />
<Content Include="App_Plugins\Skybrud.LinkPicker\package.manifest" />
<Content Include="App_Plugins\Skybrud.LinkPicker\Styles\Default.less" />
</ItemGroup>

<ItemGroup>
Expand All @@ -40,4 +50,8 @@
</Content>
</ItemGroup>

<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(ConfigurationName)'=='Release' AND '$(BuildTools)'=='1'">
<Exec Command="&quot;$(ProjectDir)..\build\Skybrud.BuildTools.Tasks.exe&quot; &quot;postBuild&quot; &quot;$(ConfigurationName)&quot; &quot;$(ProjectPath)&quot; &quot;$(TargetPath)&quot;" />
</Target>

</Project>

0 comments on commit 920827f

Please sign in to comment.