Skip to content

Commit

Permalink
flat migration to Revit 2020
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremytammik committed Jul 17, 2020
1 parent 54c9703 commit 0a038a3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
9 changes: 5 additions & 4 deletions SvgExport/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration( "" )]
[assembly: AssemblyCompany( "Autodesk Inc." )]
[assembly: AssemblyProduct( "SvgExport" )]
[assembly: AssemblyCopyright( "Copyright 2015 © Jeremy Tammik Autodesk Inc." )]
[assembly: AssemblyCopyright( "Copyright (C) 2015-2020 Jeremy Tammik Autodesk Inc." )]
[assembly: AssemblyTrademark( "" )]
[assembly: AssemblyCulture( "" )]

Expand All @@ -35,6 +35,7 @@
//
// 2015-04-15 2015.0.0.0 Revit 2015
// 2015-09-16 2016.0.0.1 flat migration to Revit 2016

[assembly: AssemblyVersion( "2016.0.0.1" )]
[assembly: AssemblyFileVersion( "2016.0.0.1" )]
// 2020-07-17 2020.0.0.0 flat migration to Revit 2020
//
[assembly: AssemblyVersion( "2020.0.0.0" )]
[assembly: AssemblyFileVersion( "2020.0.0.0" )]
12 changes: 6 additions & 6 deletions SvgExport/SvgExport.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ResolveAssemblyWarnOrErrorOnTargetArchitectureMismatch>
None
Expand All @@ -17,7 +17,7 @@
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>SvgExport</RootNamespace>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
Expand Down Expand Up @@ -45,11 +45,11 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="RevitAPI">
<HintPath>C:\Program Files\Autodesk\Revit 2016\RevitAPI.dll</HintPath>
<HintPath>C:\Program Files\Autodesk\Revit 2020\RevitAPI.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="RevitAPIUI">
<HintPath>C:\Program Files\Autodesk\Revit 2016\RevitAPIUI.dll</HintPath>
<HintPath>C:\Program Files\Autodesk\Revit 2020\RevitAPIUI.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System" />
Expand All @@ -67,7 +67,7 @@
<Delete Files="$(AppData)\Autodesk\REVIT\Addins\2015\SvgExport.dll" />
</Target>
<PropertyGroup>
<PostBuildEvent>copy "$(ProjectDir)SvgExport.addin" "$(AppData)\Autodesk\REVIT\Addins\2016"
copy "$(ProjectDir)bin\debug\SvgExport.dll" "$(AppData)\Autodesk\REVIT\Addins\2016"</PostBuildEvent>
<PostBuildEvent>copy "$(ProjectDir)SvgExport.addin" "$(AppData)\Autodesk\REVIT\Addins\2020"
copy "$(ProjectDir)bin\debug\SvgExport.dll" "$(AppData)\Autodesk\REVIT\Addins\2020"</PostBuildEvent>
</PropertyGroup>
</Project>

0 comments on commit 0a038a3

Please sign in to comment.